forked from plotly/plotly.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartial_bundle.js
72 lines (59 loc) · 2.62 KB
/
partial_bundle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
var prependFile = require('prepend-file');
var constants = require('./util/constants');
var common = require('./util/common');
var _bundle = require('./util/bundle_wrapper');
var header = constants.licenseDist + '\n';
var allTransforms = constants.allTransforms;
var allTraces = constants.allTraces;
var mainIndex = constants.mainIndex;
var strictIndex = constants.strictIndex;
// Bundle the plotly.js partial bundles
module.exports = function partialBundle(tasks, opts) {
var name = opts.name;
var index = opts.index;
var deleteIndex = opts.deleteIndex;
var dist = opts.dist;
var distMin = opts.distMin;
var traceList = opts.traceList;
var transformList = opts.transformList;
var calendars = opts.calendars;
var strict = opts.strict;
// skip strict bundle which is no longer a partial bundle and has a special index file for regl traces
if(name !== 'strict') {
tasks.push(function(done) {
var partialIndex = (strict) ? strictIndex : mainIndex;
var all = ['calendars'].concat(allTransforms).concat(allTraces);
var includes = (calendars ? ['calendars'] : []).concat(transformList).concat(traceList);
var excludes = all.filter(function(e) { return includes.indexOf(e) === -1; });
excludes.forEach(function(t) {
var WHITESPACE_BEFORE = '\\s*';
// remove require
var regEx = WHITESPACE_BEFORE + 'require\\(\'\\./' + t + '\'\\),';
if(strict) {
regEx += '|require\\(\'\\.\\./src/traces/' + t + '/strict\'\\),';
}
var newCode = partialIndex.replace(new RegExp(regEx, 'g'), '');
// test removal
if(newCode === partialIndex) {
console.error('Unable to find and drop require for ' + t);
throw 'Error generating index for partial bundle!';
}
partialIndex = newCode;
});
common.writeFile(index, partialIndex, done);
});
}
tasks.push(function(done) {
var bundleOpts = {
deleteIndex: deleteIndex,
pathToMinBundle: distMin
};
_bundle(index, dist, bundleOpts, function() {
var headerDist = header.replace('plotly.js', 'plotly.js (' + name + ')');
var headerDistMin = header.replace('plotly.js', 'plotly.js (' + name + ' - minified)');
if(dist) prependFile.sync(dist, headerDist, common.throwOnError);
if(distMin) prependFile.sync(distMin, headerDistMin, common.throwOnError);
done();
});
});
};