File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,26 @@ constants.partialBundlePaths
41
41
} ] )
42
42
. forEach ( syncPartialBundlePkg ) ;
43
43
44
+ // sync "minified partial bundle" packages
45
+ constants . partialBundlePaths
46
+ . map ( function ( d ) {
47
+ return {
48
+ name : 'plotly.js-' + d . name + '-dist-min' ,
49
+ index : d . index ,
50
+ main : 'plotly-' + d . name + '.min.js' ,
51
+ dist : d . distMin ,
52
+ desc : 'Ready-to-use minified plotly.js ' + d . name + ' distributed bundle.' ,
53
+ } ;
54
+ } )
55
+ . concat ( [ {
56
+ name : 'plotly.js-dist-min' ,
57
+ index : path . join ( constants . pathToLib , 'index.js' ) ,
58
+ main : 'plotly.min.js' ,
59
+ dist : constants . pathToPlotlyDistMin ,
60
+ desc : 'Ready-to-use minified plotly.js distributed bundle.' ,
61
+ } ] )
62
+ . forEach ( syncPartialBundlePkg ) ;
63
+
44
64
// sync "locales" package
45
65
syncLocalesPkg ( {
46
66
name : 'plotly.js-locales' ,
You can’t perform that action at this time.
0 commit comments