worklog
Version:
Log your work to a specific file, from the cli.
19 lines (17 loc) • 413 B
JavaScript
module.exports = function(grunt) {
'use strict';
grunt.config('watch', {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
lib: {
files: '<%= jshint.lib.src %>',
tasks: ['jshint:lib', 'nodeunit']
},
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'nodeunit']
}
});
};