File tree 2 files changed +1
-5
lines changed
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ tasks.push(function(cb) {
50
50
_bundle ( constants . pathToPlotlyIndex , constants . pathToPlotlyDist , {
51
51
standalone : 'Plotly' ,
52
52
debug : DEV ,
53
- compressAttrs : true ,
54
53
pathToMinBundle : constants . pathToPlotlyDistMin
55
54
} , cb ) ;
56
55
} ) ;
@@ -62,7 +61,7 @@ tasks.push(function(cb) {
62
61
} , cb ) ;
63
62
} ) ;
64
63
65
- // Browserify the plotly.js with meta
64
+ // Browserify plotly.js with meta and output plot-schema JSON
66
65
tasks . push ( function ( cb ) {
67
66
_bundle ( constants . pathToPlotlyIndex , constants . pathToPlotlyDistWithMeta , {
68
67
standalone : 'Plotly' ,
@@ -80,7 +79,6 @@ constants.partialBundlePaths.forEach(function(pathObj) {
80
79
_bundle ( pathObj . index , pathObj . dist , {
81
80
standalone : 'Plotly' ,
82
81
debug : DEV ,
83
- compressAttrs : true ,
84
82
pathToMinBundle : pathObj . distMin
85
83
} , cb ) ;
86
84
} ) ;
Original file line number Diff line number Diff line change @@ -11,12 +11,10 @@ var _bundle = require('./util/browserify_wrapper');
11
11
* - plotly.min.js bundle in dist/ (for requirejs test)
12
12
*/
13
13
14
-
15
14
// Browserify plotly.js and plotly.min.js
16
15
_bundle ( constants . pathToPlotlyIndex , constants . pathToPlotlyBuild , {
17
16
standalone : 'Plotly' ,
18
17
debug : true ,
19
- compressAttrs : true ,
20
18
pathToMinBundle : constants . pathToPlotlyDistMin
21
19
} ) ;
22
20
You can’t perform that action at this time.
0 commit comments