Skip to content

Commit ce2a33a

Browse files
committedSep 10, 2018
🔪 now obsolete compressAttrs arg
1 parent 03be8ff commit ce2a33a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed
 

Diff for: ‎tasks/bundle.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ tasks.push(function(cb) {
5050
_bundle(constants.pathToPlotlyIndex, constants.pathToPlotlyDist, {
5151
standalone: 'Plotly',
5252
debug: DEV,
53-
compressAttrs: true,
5453
pathToMinBundle: constants.pathToPlotlyDistMin
5554
}, cb);
5655
});
@@ -62,7 +61,7 @@ tasks.push(function(cb) {
6261
}, cb);
6362
});
6463

65-
// Browserify the plotly.js with meta
64+
// Browserify plotly.js with meta and output plot-schema JSON
6665
tasks.push(function(cb) {
6766
_bundle(constants.pathToPlotlyIndex, constants.pathToPlotlyDistWithMeta, {
6867
standalone: 'Plotly',
@@ -80,7 +79,6 @@ constants.partialBundlePaths.forEach(function(pathObj) {
8079
_bundle(pathObj.index, pathObj.dist, {
8180
standalone: 'Plotly',
8281
debug: DEV,
83-
compressAttrs: true,
8482
pathToMinBundle: pathObj.distMin
8583
}, cb);
8684
});

Diff for: ‎tasks/cibundle.js

-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ var _bundle = require('./util/browserify_wrapper');
1111
* - plotly.min.js bundle in dist/ (for requirejs test)
1212
*/
1313

14-
1514
// Browserify plotly.js and plotly.min.js
1615
_bundle(constants.pathToPlotlyIndex, constants.pathToPlotlyBuild, {
1716
standalone: 'Plotly',
1817
debug: true,
19-
compressAttrs: true,
2018
pathToMinBundle: constants.pathToPlotlyDistMin
2119
});
2220

0 commit comments

Comments
 (0)
Please sign in to comment.