diff options
| author | Arjun Roychowdhury <pliablepixels@gmail.com> | 2016-01-05 03:06:24 +0530 |
|---|---|---|
| committer | Arjun Roychowdhury <pliablepixels@gmail.com> | 2016-01-05 03:06:24 +0530 |
| commit | a3fe41a590c77e6d624366609c5c026097438008 (patch) | |
| tree | 8372d806a11c04095114dd938275e0ad695f59da /www/lib/vis/gulpfile.js | |
| parent | dea8dd4f669aa677661ffaca67ef2ad1634dd690 (diff) | |
#129 - new vis upgrade - performance boost
Former-commit-id: bab7515c0365e753c075dbe1899982548f6e5cde
Diffstat (limited to 'www/lib/vis/gulpfile.js')
| -rw-r--r-- | www/lib/vis/gulpfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/lib/vis/gulpfile.js b/www/lib/vis/gulpfile.js index 636061b9..5d1d8720 100644 --- a/www/lib/vis/gulpfile.js +++ b/www/lib/vis/gulpfile.js @@ -100,6 +100,7 @@ gulp.task('bundle-css', ['clean'], function () { var files = [ './lib/shared/activator.css', './lib/shared/bootstrap.css', + './lib/shared/configuration.css', './lib/timeline/component/css/timeline.css', './lib/timeline/component/css/panel.css', @@ -115,9 +116,8 @@ gulp.task('bundle-css', ['clean'], function () { './lib/timeline/component/css/pathStyles.css', './lib/network/css/network-manipulation.css', - './lib/network/css/network-navigation.css', './lib/network/css/network-tooltip.css', - './lib/network/css/network-configuration.css', + './lib/network/css/network-navigation.css', './lib/network/css/network-colorpicker.css' ]; @@ -148,7 +148,7 @@ gulp.task('minify', ['bundle-js'], function (cb) { // any issues when concatenating the file downstream (the file ends // with a comment). fs.writeFileSync(DIST + '/' + VIS_MIN_JS, result.code + '\n'); - fs.writeFileSync(DIST + '/' + VIS_MAP, result.map); + fs.writeFileSync(DIST + '/' + VIS_MAP, result.map.replace(/"\.\/dist\//g, '"')); cb(); }); |
