Gruntfile.js
573 Bytes
module.exports = function(grunt){
//플러그인 로딩
[
'grunt-cafe-mocha',
'grunt-contrib-jshint',
// 'grunt-exec',
].forEach(function(task){
grunt.loadNpmTasks(task);});
//플러그인설정
grunt.initConfig({
cafemocha:{
all:{src:'qa/tests-*.js', options:{ui:'tdd'},}
},
jshint:{
app:['meadowlark.js', 'public/js/**/*.js',
'lib/**/*.js'],
qa:['Gruntfile.js','public/qa/**/*.js', 'qa/**/*.js'],
},
/* exec:{
linkchecker:
{cmd:'linkchecker http://localhost:3000'}
},*/
});
grunt.registerTask('default',['cafemocha','jshint']);
};