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.

178 lines
4.9 KiB

9 years ago
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. }
  72. // output soft errors
  73. stats.compilation.errors.forEach(function (err) {
  74. gutil.log(err);
  75. });
  76. if (err || stats.compilation.errors.length > 0) {
  77. gutil.beep(); // TODO: this does not work on my system
  78. }
  79. cb();
  80. });
  81. });
  82. // bundle and minify css
  83. gulp.task('bundle-css', ['clean'], function () {
  84. var files = [
  85. './lib/shared/activator.css',
  86. './lib/shared/bootstrap.css',
  87. './lib/timeline/component/css/timeline.css',
  88. './lib/timeline/component/css/panel.css',
  89. './lib/timeline/component/css/labelset.css',
  90. './lib/timeline/component/css/itemset.css',
  91. './lib/timeline/component/css/item.css',
  92. './lib/timeline/component/css/timeaxis.css',
  93. './lib/timeline/component/css/currenttime.css',
  94. './lib/timeline/component/css/customtime.css',
  95. './lib/timeline/component/css/animation.css',
  96. './lib/timeline/component/css/dataaxis.css',
  97. './lib/timeline/component/css/pathStyles.css',
  98. './lib/network/css/network-manipulation.css',
  99. './lib/network/css/network-navigation.css',
  100. './lib/network/css/network-tooltip.css',
  101. './lib/network/css/network-configuration.css',
  102. './lib/network/css/network-colorpicker.css'
  103. ];
  104. return gulp.src(files)
  105. .pipe(concat(VIS_CSS))
  106. .pipe(gulp.dest(DIST))
  107. // TODO: nicer to put minifying css in a separate task?
  108. .pipe(minifyCSS())
  109. .pipe(rename(VIS_MIN_CSS))
  110. .pipe(gulp.dest(DIST));
  111. });
  112. gulp.task('copy', ['clean'], function () {
  113. var network = gulp.src('./lib/network/img/**/*')
  114. .pipe(gulp.dest(DIST + '/img/network'));
  115. var timeline = gulp.src('./lib/timeline/img/**/*')
  116. .pipe(gulp.dest(DIST + '/img/timeline'));
  117. return merge(network, timeline);
  118. });
  119. gulp.task('minify', ['bundle-js'], function (cb) {
  120. var result = uglify.minify([DIST + '/' + VIS_JS], uglifyConfig);
  121. // note: we add a newline '\n' to the end of the minified file to prevent
  122. // any issues when concatenating the file downstream (the file ends
  123. // with a comment).
  124. fs.writeFileSync(DIST + '/' + VIS_MIN_JS, result.code + '\n');
  125. fs.writeFileSync(DIST + '/' + VIS_MAP, result.map);
  126. cb();
  127. });
  128. gulp.task('bundle', ['bundle-js', 'bundle-css', 'copy']);
  129. // read command line arguments --bundle and --minify
  130. var bundle = 'bundle' in argv;
  131. var minify = 'minify' in argv;
  132. var watchTasks = [];
  133. if (bundle || minify) {
  134. // do bundling and/or minifying only when specified on the command line
  135. watchTasks = [];
  136. if (bundle) watchTasks.push('bundle');
  137. if (minify) watchTasks.push('minify');
  138. }
  139. else {
  140. // by default, do both bundling and minifying
  141. watchTasks = ['bundle', 'minify'];
  142. }
  143. // The watch task (to automatically rebuild when the source code changes)
  144. gulp.task('watch', watchTasks, function () {
  145. gulp.watch(['index.js', 'lib/**/*'], watchTasks);
  146. });
  147. // The default task (called when you run `gulp`)
  148. gulp.task('default', ['clean', 'bundle', 'minify']);