1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-03 12:50:04 +02:00
Files
gitlit/app/node_modules/tmp/Gruntfile.js
2018-05-22 08:34:57 +02:00

19 lines
388 B
JavaScript

module.exports = function(grunt) {
grunt.initConfig({
jshint: {
all: ['Gruntfile.js', 'lib/*.js', 'test/*.js']
},
vows: {
all: {
src: ['test/*.js'],
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
//grunt.loadNpmTasks('grunt-vows-runner');
grunt.loadNpmTasks('grunt-vows');
grunt.registerTask('default', ['jshint', 'vows']);
};