File tree Expand file tree Collapse file tree 12 files changed +41
-38
lines changed Expand file tree Collapse file tree 12 files changed +41
-38
lines changed Original file line number Diff line number Diff line change @@ -166,12 +166,12 @@ jobs:
166166 echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.js
167167 echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.min.js
168168 echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plot-schema.json
169- - run :
170- name : Test certain bundles against function constructors
171- command : npm run no-new-func
172169 - run :
173170 name : Test plotly bundles againt unexpected characters
174171 command : npm run no-bad-char
172+ - run :
173+ name : Test certain bundles against function constructors
174+ command : npm run no-new-func
175175
176176workflows :
177177 version : 2
Original file line number Diff line number Diff line change @@ -15,5 +15,4 @@ Plotly.register([
1515 require ( './pie' )
1616] ) ;
1717
18- require ( './register_extra' ) ( Plotly ) ;
19- module . exports = Plotly ;
18+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -24,5 +24,4 @@ Plotly.register([
2424 require ( './violin' )
2525] ) ;
2626
27- require ( './register_extra' ) ( Plotly ) ;
28- module . exports = Plotly ;
27+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -22,5 +22,4 @@ Plotly.register([
2222 require ( './indicator' )
2323] ) ;
2424
25- require ( './register_extra' ) ( Plotly ) ;
26- module . exports = Plotly ;
25+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -15,5 +15,4 @@ Plotly.register([
1515 require ( './choropleth' )
1616] ) ;
1717
18- require ( './register_extra' ) ( Plotly ) ;
19- module . exports = Plotly ;
18+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -17,5 +17,4 @@ Plotly.register([
1717 require ( './parcoords' )
1818] ) ;
1919
20- require ( './register_extra' ) ( Plotly ) ;
21- module . exports = Plotly ;
20+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -20,5 +20,4 @@ Plotly.register([
2020 require ( './streamtube' )
2121] ) ;
2222
23- require ( './register_extra' ) ( Plotly ) ;
24- module . exports = Plotly ;
23+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -16,5 +16,4 @@ Plotly.register([
1616 require ( './densitymapbox' )
1717] ) ;
1818
19- require ( './register_extra' ) ( Plotly ) ;
20- module . exports = Plotly ;
19+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -56,5 +56,4 @@ Plotly.register([
5656 require ( './barpolar' )
5757] ) ;
5858
59- require ( './register_extra' ) ( Plotly ) ;
60- module . exports = Plotly ;
59+ module . exports = require ( './register_extra' ) ( Plotly ) ;
Original file line number Diff line number Diff line change @@ -71,5 +71,4 @@ Plotly.register([
7171 require ( './barpolar' )
7272] ) ;
7373
74- require ( './register_extra' ) ( Plotly ) ;
75- module . exports = Plotly ;
74+ module . exports = require ( './register_extra' ) ( Plotly ) ;
You can’t perform that action at this time.
0 commit comments