Gruntfile.js 292 B

1234567891011121314151617
  1. module.exports = function(grunt) {
  2. require('load-grunt-config')(grunt);
  3. grunt.registerTask('build', [
  4. 'clean:docs',
  5. 'exec:build_docs'
  6. ]);
  7. grunt.registerTask('default', [
  8. 'clean:docs',
  9. 'exec:build_docs',
  10. 'connect:docs',
  11. 'open:docs',
  12. 'watch:docs'
  13. ]);
  14. };