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:
166
166
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.js
167
167
echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/dist/plotly.min.js
168
168
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
172
169
- run :
173
170
name : Test plotly bundles againt unexpected characters
174
171
command : npm run no-bad-char
172
+ - run :
173
+ name : Test certain bundles against function constructors
174
+ command : npm run no-new-func
175
175
176
176
workflows :
177
177
version : 2
Original file line number Diff line number Diff line change @@ -15,5 +15,4 @@ Plotly.register([
15
15
require ( './pie' )
16
16
] ) ;
17
17
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([
24
24
require ( './violin' )
25
25
] ) ;
26
26
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([
22
22
require ( './indicator' )
23
23
] ) ;
24
24
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([
15
15
require ( './choropleth' )
16
16
] ) ;
17
17
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([
17
17
require ( './parcoords' )
18
18
] ) ;
19
19
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([
20
20
require ( './streamtube' )
21
21
] ) ;
22
22
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([
16
16
require ( './densitymapbox' )
17
17
] ) ;
18
18
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([
56
56
require ( './barpolar' )
57
57
] ) ;
58
58
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([
71
71
require ( './barpolar' )
72
72
] ) ;
73
73
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