catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
40 lines (33 loc) • 735 B
JavaScript
;
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
options : {
jshintrc : '.jshintrc'
},
all: ['Gruntfile.js', 'tasks/**/*.js', 'test/**/*.js']
},
open : {
dev : {
path : 'http://mozilla.com/',
app : 'firefox'
},
google : {
url : 'http://google.com/',
app : 'Google Chrome'
},
default_app : {
url : 'http://example.com/'
},
file : {
file : '/etc/hosts'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
// Load local tasks.
grunt.loadTasks('tasks');
// Default task.
grunt.registerTask('default', ['jshint','open']);
};