gulpfile.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /**
  2. * @author NHN Ent. FE Development Team <dl_javascript@nhnent.com>
  3. * @fileoverview Gulpfile
  4. */
  5. 'use strict';
  6. var path = require('path');
  7. var gulp = require('gulp');
  8. var del = require('del');
  9. var connect = require('gulp-connect');
  10. var jsdoc = require('gulp-jsdoc3');
  11. /* Demo paths */
  12. var DEMO_PATH = path.join(__dirname, 'demo');
  13. var DEMO_TEMPLATE_PATH = __dirname;
  14. var DEMO_DESTINATION_PATH = 'doc';
  15. var demoFilePaths = ['src/**/*.js'].map(function (filePath) {
  16. return path.join(DEMO_PATH, filePath);
  17. });
  18. demoFilePaths.push('README.md');
  19. gulp.task('demo:default', ['del'], function(done) {
  20. var config = {
  21. opts: {destination: path.join(DEMO_DESTINATION_PATH, '-docstrap')}
  22. };
  23. gulp.src(demoFilePaths, {read: false})
  24. .pipe(jsdoc(config, done));
  25. });
  26. /**
  27. * Generate demo document
  28. */
  29. gulp.task('demo', ['del'], function(done) {
  30. /* Demo config */
  31. var domeConfigPath = path.join(DEMO_PATH, 'jsdoc-conf.json');
  32. var config = require(domeConfigPath);
  33. delete require.cache[require.resolve(domeConfigPath)]; // remove cache
  34. config.opts.template = DEMO_TEMPLATE_PATH;
  35. config.opts.destination = DEMO_DESTINATION_PATH;
  36. gulp.src(demoFilePaths, {read: false})
  37. .pipe(jsdoc(config, done));
  38. });
  39. /**
  40. * Watch file paths
  41. * @type {string[]}
  42. */
  43. var watchPaths = [
  44. 'demo/src/**/*.js',
  45. 'demo/jsdoc-conf.json',
  46. 'demo/samples/**/*',
  47. 'static/scripts/**/*.js',
  48. 'static/styles/**/*.css',
  49. 'tmpl/**/*.tmpl',
  50. 'publish.js'
  51. ];
  52. /**
  53. * Reload server
  54. */
  55. gulp.task('reload', ['demo'], function() {
  56. return gulp.src(watchPaths)
  57. .pipe(connect.reload())
  58. });
  59. /**
  60. * Regenerate demo document when a file changes
  61. */
  62. gulp.task('watch', ['demo'] ,function() {
  63. var watcher = gulp.watch(watchPaths, ['demo', 'reload']);
  64. watcher.on('change', function (event) {
  65. console.log('File: ' + event.path + ' was ' + event.type + ', running tasks...');
  66. });
  67. });
  68. /**
  69. * Run web server
  70. */
  71. gulp.task('connect', ['demo'], function() {
  72. connect.server({
  73. root: DEMO_DESTINATION_PATH,
  74. livereload: true
  75. });
  76. });
  77. /**
  78. * @command gulp serve
  79. * Connect-server with watch
  80. */
  81. gulp.task('serve', ['connect', 'watch']);
  82. /**
  83. * @command gulp del
  84. * Delete all demo-doc files
  85. */
  86. gulp.task('del', function() {
  87. return del([DEMO_DESTINATION_PATH]);
  88. });