mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 14:21:13 +00:00
116 lines
2.3 KiB
JavaScript
116 lines
2.3 KiB
JavaScript
module.exports = function (grunt) {
|
|
|
|
grunt.initConfig({
|
|
|
|
jshint: {
|
|
all: [
|
|
'**/*.js',
|
|
'!node_modules/**/*.js',
|
|
'!public/js/vendor/**/*.js',
|
|
'!public/js/site.min.js'
|
|
],
|
|
options: {
|
|
es3: false,
|
|
indent: 4,
|
|
latedef: false,
|
|
maxcomplexity: 4,
|
|
maxdepth: 2,
|
|
maxlen: 100,
|
|
maxparams: 4,
|
|
maxstatements: false,
|
|
node: true,
|
|
quotmark: 'single'
|
|
}
|
|
},
|
|
|
|
less: {
|
|
all: {
|
|
options: {
|
|
cleancss: true
|
|
},
|
|
files: {
|
|
'public/css/site.min.css': 'public/less/main.less'
|
|
}
|
|
}
|
|
},
|
|
|
|
mochaTest: {
|
|
functional: {
|
|
src: ['test/functional/*.js'],
|
|
options: {
|
|
reporter: 'spec'
|
|
}
|
|
}
|
|
},
|
|
|
|
nodemon: {
|
|
development: {
|
|
options: {
|
|
cwd: __dirname,
|
|
file: 'index.js',
|
|
env: {
|
|
NODE_ENV: 'development'
|
|
}
|
|
}
|
|
},
|
|
test: {
|
|
options: {
|
|
cwd: __dirname,
|
|
file: 'index.js',
|
|
env: {
|
|
NODE_ENV: 'test'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
uglify: {
|
|
options: {
|
|
mangle: false
|
|
},
|
|
all: {
|
|
files: {
|
|
'public/js/site.min.js': [
|
|
'public/js/vendor/jquery/jquery.min.js',
|
|
'public/js/vendor/bootstrap/js/alert.js',
|
|
'public/js/vendor/bootstrap/js/dropdown.js',
|
|
'public/js/vendor/bootstrap/js/tooltip.js',
|
|
'public/js/vendor/flot/jquery.flot.js',
|
|
'public/js/vendor/flot/jquery.flot.categories.js',
|
|
'public/js/vendor/flot/jquery.flot.selection.js',
|
|
'public/js/vendor/flot/jquery.flot.resize.js',
|
|
'public/js/site.js'
|
|
]
|
|
}
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
less: {
|
|
files: ['public/less/**/*.less'],
|
|
tasks: ['less']
|
|
},
|
|
js: {
|
|
files: ['public/js/**/*.js', '!public/js/site.min.js'],
|
|
tasks: ['uglify']
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-contrib-less');
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-mocha-test');
|
|
grunt.loadNpmTasks('grunt-nodemon');
|
|
|
|
grunt.registerTask('lint', ['jshint']);
|
|
grunt.registerTask('test', ['mochaTest']);
|
|
grunt.registerTask('compile', ['less', 'uglify']);
|
|
grunt.registerTask('start', ['nodemon:development']);
|
|
grunt.registerTask('start-test', ['nodemon:test']);
|
|
grunt.registerTask('default', ['compile', 'lint', 'test']);
|
|
grunt.registerTask('ci', ['lint', 'test']);
|
|
|
|
}; |