vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
4.3 KiB

  1. var fs = require('fs');
  2. var gulp = require('gulp');
  3. var gutil = require('gulp-util');
  4. var concat = require('gulp-concat');
  5. var minifyCSS = require('gulp-minify-css');
  6. var rename = require("gulp-rename");
  7. var webpack = require('webpack');
  8. var uglify = require('uglify-js');
  9. var rimraf = require('rimraf');
  10. var merge = require('merge-stream');
  11. var argv = require('yargs').argv;
  12. var ENTRY = './index.js';
  13. var HEADER = './lib/header.js';
  14. var DIST = './dist';
  15. var VIS_JS = 'vis.js';
  16. var VIS_MAP = 'vis.map';
  17. var VIS_MIN_JS = 'vis.min.js';
  18. var VIS_CSS = 'vis.css';
  19. var VIS_MIN_CSS = 'vis.min.css';
  20. // generate banner with today's date and correct version
  21. function createBanner() {
  22. var today = gutil.date(new Date(), 'yyyy-mm-dd'); // today, formatted as yyyy-mm-dd
  23. var version = require('./package.json').version;
  24. return String(fs.readFileSync(HEADER))
  25. .replace('@@date', today)
  26. .replace('@@version', version);
  27. }
  28. var bannerPlugin = new webpack.BannerPlugin(createBanner(), {
  29. entryOnly: true,
  30. raw: true
  31. });
  32. // TODO: the moment.js language files should be excluded by default (they are quite big)
  33. var webpackConfig = {
  34. entry: ENTRY,
  35. output: {
  36. library: 'vis',
  37. libraryTarget: 'umd',
  38. path: DIST,
  39. filename: VIS_JS,
  40. sourcePrefix: ' '
  41. },
  42. // exclude requires of moment.js language files
  43. module: {
  44. wrappedContextRegExp: /$^/
  45. },
  46. plugins: [ bannerPlugin ],
  47. cache: true
  48. };
  49. var uglifyConfig = {
  50. outSourceMap: VIS_MAP,
  51. output: {
  52. comments: /@license/
  53. }
  54. };
  55. // create a single instance of the compiler to allow caching
  56. var compiler = webpack(webpackConfig);
  57. // clean the dist/img directory
  58. gulp.task('clean', function (cb) {
  59. rimraf(DIST + '/img', cb);
  60. });
  61. gulp.task('bundle-js', ['clean'], function (cb) {
  62. // update the banner contents (has a date in it which should stay up to date)
  63. bannerPlugin.banner = createBanner();
  64. compiler.run(function (err, stats) {
  65. if (err) gutil.log(err);
  66. cb();
  67. });
  68. });
  69. // bundle and minify css
  70. gulp.task('bundle-css', ['clean'], function () {
  71. var files = [
  72. './lib/shared/activator.css',
  73. './lib/timeline/component/css/timeline.css',
  74. './lib/timeline/component/css/panel.css',
  75. './lib/timeline/component/css/labelset.css',
  76. './lib/timeline/component/css/itemset.css',
  77. './lib/timeline/component/css/item.css',
  78. './lib/timeline/component/css/timeaxis.css',
  79. './lib/timeline/component/css/currenttime.css',
  80. './lib/timeline/component/css/customtime.css',
  81. './lib/timeline/component/css/animation.css',
  82. './lib/timeline/component/css/dataaxis.css',
  83. './lib/timeline/component/css/pathStyles.css',
  84. './lib/network/css/network-manipulation.css',
  85. './lib/network/css/network-navigation.css'
  86. ];
  87. return gulp.src(files)
  88. .pipe(concat(VIS_CSS))
  89. .pipe(gulp.dest(DIST))
  90. // TODO: nicer to put minifying css in a separate task?
  91. .pipe(minifyCSS())
  92. .pipe(rename(VIS_MIN_CSS))
  93. .pipe(gulp.dest(DIST));
  94. });
  95. gulp.task('copy', ['clean'], function () {
  96. var network = gulp.src('./lib/network/img/**/*')
  97. .pipe(gulp.dest(DIST + '/img/network'));
  98. var timeline = gulp.src('./lib/timeline/img/**/*')
  99. .pipe(gulp.dest(DIST + '/img/timeline'));
  100. return merge(network, timeline);
  101. });
  102. gulp.task('minify', ['bundle-js'], function (cb) {
  103. var result = uglify.minify([DIST + '/' + VIS_JS], uglifyConfig);
  104. fs.writeFileSync(DIST + '/' + VIS_MIN_JS, result.code);
  105. fs.writeFileSync(DIST + '/' + VIS_MAP, result.map);
  106. cb();
  107. });
  108. gulp.task('bundle', ['bundle-js', 'bundle-css', 'copy']);
  109. // read command line arguments --bundle and --minify
  110. var bundle = 'bundle' in argv;
  111. var minify = 'minify' in argv;
  112. var watchTasks = [];
  113. if (bundle || minify) {
  114. // do bundling and/or minifying only when specified on the command line
  115. watchTasks = [];
  116. if (bundle) watchTasks.push('bundle');
  117. if (minify) watchTasks.push('minify');
  118. }
  119. else {
  120. // by default, do both bundling and minifying
  121. watchTasks = ['bundle', 'minify'];
  122. }
  123. // The watch task (to automatically rebuild when the source code changes)
  124. gulp.task('watch', watchTasks, function () {
  125. gulp.watch(['index.js', 'lib/**/*'], watchTasks);
  126. });
  127. // The default task (called when you run `gulp`)
  128. gulp.task('default', ['clean', 'bundle', 'minify']);