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.

169 lines
4.7 KiB

9 years ago
  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. var webpackConfig = {
  33. entry: ENTRY,
  34. output: {
  35. library: 'vis',
  36. libraryTarget: 'umd',
  37. path: DIST,
  38. filename: VIS_JS,
  39. sourcePrefix: ' '
  40. },
  41. module: {
  42. loaders: [
  43. { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader'}
  44. ],
  45. // exclude requires of moment.js language files
  46. wrappedContextRegExp: /$^/
  47. },
  48. plugins: [ bannerPlugin ],
  49. cache: true,
  50. debug: true,
  51. bail: true
  52. };
  53. var uglifyConfig = {
  54. outSourceMap: VIS_MAP,
  55. output: {
  56. comments: /@license/
  57. }
  58. };
  59. // create a single instance of the compiler to allow caching
  60. var compiler = webpack(webpackConfig);
  61. // clean the dist/img directory
  62. gulp.task('clean', function (cb) {
  63. rimraf(DIST + '/img', cb);
  64. });
  65. gulp.task('bundle-js', ['clean'], function (cb) {
  66. // update the banner contents (has a date in it which should stay up to date)
  67. bannerPlugin.banner = createBanner();
  68. compiler.run(function (err, stats) {
  69. if (err) {
  70. gutil.log(err.toString());
  71. gutil.beep(); // TODO: this does not work on my system
  72. }
  73. cb();
  74. });
  75. });
  76. // bundle and minify css
  77. gulp.task('bundle-css', ['clean'], function () {
  78. var files = [
  79. './lib/shared/activator.css',
  80. './lib/shared/bootstrap.css',
  81. './lib/timeline/component/css/timeline.css',
  82. './lib/timeline/component/css/panel.css',
  83. './lib/timeline/component/css/labelset.css',
  84. './lib/timeline/component/css/itemset.css',
  85. './lib/timeline/component/css/item.css',
  86. './lib/timeline/component/css/timeaxis.css',
  87. './lib/timeline/component/css/currenttime.css',
  88. './lib/timeline/component/css/customtime.css',
  89. './lib/timeline/component/css/animation.css',
  90. './lib/timeline/component/css/dataaxis.css',
  91. './lib/timeline/component/css/pathStyles.css',
  92. './lib/network/css/network-manipulation.css',
  93. './lib/network/css/network-navigation.css',
  94. './lib/network/css/network-tooltip.css',
  95. './lib/network/css/network-configuration.css',
  96. './lib/network/css/network-colorpicker.css'
  97. ];
  98. return gulp.src(files)
  99. .pipe(concat(VIS_CSS))
  100. .pipe(gulp.dest(DIST))
  101. // TODO: nicer to put minifying css in a separate task?
  102. .pipe(minifyCSS())
  103. .pipe(rename(VIS_MIN_CSS))
  104. .pipe(gulp.dest(DIST));
  105. });
  106. gulp.task('copy', ['clean'], function () {
  107. var network = gulp.src('./lib/network/img/**/*')
  108. .pipe(gulp.dest(DIST + '/img/network'));
  109. var timeline = gulp.src('./lib/timeline/img/**/*')
  110. .pipe(gulp.dest(DIST + '/img/timeline'));
  111. return merge(network, timeline);
  112. });
  113. gulp.task('minify', ['bundle-js'], function (cb) {
  114. var result = uglify.minify([DIST + '/' + VIS_JS], uglifyConfig);
  115. // note: we add a newline '\n' to the end of the minified file to prevent
  116. // any issues when concatenating the file downstream (the file ends
  117. // with a comment).
  118. fs.writeFileSync(DIST + '/' + VIS_MIN_JS, result.code + '\n');
  119. fs.writeFileSync(DIST + '/' + VIS_MAP, result.map);
  120. cb();
  121. });
  122. gulp.task('bundle', ['bundle-js', 'bundle-css', 'copy']);
  123. // read command line arguments --bundle and --minify
  124. var bundle = 'bundle' in argv;
  125. var minify = 'minify' in argv;
  126. var watchTasks = [];
  127. if (bundle || minify) {
  128. // do bundling and/or minifying only when specified on the command line
  129. watchTasks = [];
  130. if (bundle) watchTasks.push('bundle');
  131. if (minify) watchTasks.push('minify');
  132. }
  133. else {
  134. // by default, do both bundling and minifying
  135. watchTasks = ['bundle', 'minify'];
  136. }
  137. // The watch task (to automatically rebuild when the source code changes)
  138. gulp.task('watch', watchTasks, function () {
  139. gulp.watch(['index.js', 'lib/**/*'], watchTasks);
  140. });
  141. // The default task (called when you run `gulp`)
  142. gulp.task('default', ['clean', 'bundle', 'minify']);