mirror of
https://github.com/bower/bower.git
synced 2026-01-14 16:57:57 -05:00
49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
module.exports = function (grunt) {
|
|
grunt.initConfig({
|
|
jshint: {
|
|
options: {
|
|
jshintrc: '.jshintrc'
|
|
},
|
|
files: ['Gruntfile.js', 'bin/*', 'lib/**/*.js', 'test/**/*.js', '!test/assets/**/*', '!test/reports/**/*']
|
|
},
|
|
simplemocha: {
|
|
options: {
|
|
reporter: 'spec',
|
|
timeout: '5000'
|
|
},
|
|
full: { src: ['test/test.js'] },
|
|
short: {
|
|
options: {
|
|
reporter: 'dot'
|
|
},
|
|
src: ['test/test.js']
|
|
}
|
|
},
|
|
exec: {
|
|
assets: {
|
|
command: 'node test/packages.js'
|
|
},
|
|
'assets-force': {
|
|
command: 'node test/packages.js --force'
|
|
},
|
|
cover: {
|
|
command: 'node node_modules/istanbul/lib/cli.js cover --dir ./test/reports node_modules/mocha/bin/_mocha -- -R dot test/test.js'
|
|
}
|
|
},
|
|
watch: {
|
|
files: ['<%= jshint.files %>'],
|
|
tasks: ['jshint', 'simplemocha:short']
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-simple-mocha');
|
|
grunt.loadNpmTasks('grunt-exec');
|
|
|
|
grunt.registerTask('assets', ['exec:assets-force']);
|
|
grunt.registerTask('test', ['jshint', 'exec:assets', 'simplemocha:full']);
|
|
grunt.registerTask('cover', 'exec:cover');
|
|
grunt.registerTask('default', 'test');
|
|
};
|