cordova-plugin-pixlive
Version:
PixLive SDK plugin for Cordova based hybrid apps
28 lines (21 loc) • 602 B
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: ["build"],
jsdoc: {
dist: {
src: ['www'],
options: {
destination: 'build/docs',
readme: './README.md'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-jsdoc');
//Where we tell Grunt what to do when we type "grunt" into the terminal.
grunt.registerTask('default', [
'clean', 'jsdoc'
]);
};