grunt-aglio
Version:
Grunt plugin to generate aglio documentation
31 lines (25 loc) • 527 B
JavaScript
;
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js'
],
options: {
jshintrc: '.jshintrc',
},
},
aglio: {
api1:{
files:{
'dest/api.html':['first.md', 'second.md']
}
}
}
});
grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['aglio']);
};