catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
22 lines (17 loc) • 403 B
JavaScript
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
watch: {
negate: {
files: ['lib/**/*.js', '!lib/sub/*.js'],
tasks: ['echo'],
},
},
});
// Load this watch task
grunt.loadTasks('../../../tasks');
grunt.registerTask('default', ['echo']);
grunt.registerTask('echo', function() {
grunt.log.writeln('echo task has ran.');
});
};