Skip to content

Commit ed52205

Browse files
authored
Merge pull request plotly#5527 from plotly/partial-bundle-API
Custom bundle script details
2 parents d0ddf03 + 3693985 commit ed52205

14 files changed

+158
-81
lines changed

lib/index-basic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Plotly.register([
1414
require('./sort'),
1515

1616
// components
17-
require('./calendars')
17+
require('./calendars'),
1818
]);
1919

2020
module.exports = Plotly;

lib/index-cartesian.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Plotly.register([
2323
require('./sort'),
2424

2525
// components
26-
require('./calendars')
26+
require('./calendars'),
2727
]);
2828

2929
module.exports = Plotly;

lib/index-finance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Plotly.register([
2121
require('./sort'),
2222

2323
// components
24-
require('./calendars')
24+
require('./calendars'),
2525
]);
2626

2727
module.exports = Plotly;

lib/index-geo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Plotly.register([
1414
require('./sort'),
1515

1616
// components
17-
require('./calendars')
17+
require('./calendars'),
1818
]);
1919

2020
module.exports = Plotly;

lib/index-gl2d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Plotly.register([
1717
require('./sort'),
1818

1919
// components
20-
require('./calendars')
20+
require('./calendars'),
2121
]);
2222

2323
module.exports = Plotly;

lib/index-gl3d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Plotly.register([
1919
require('./sort'),
2020

2121
// components
22-
require('./calendars')
22+
require('./calendars'),
2323
]);
2424

2525
module.exports = Plotly;

lib/index-mapbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Plotly.register([
1515
require('./sort'),
1616

1717
// components
18-
require('./calendars')
18+
require('./calendars'),
1919
]);
2020

2121
module.exports = Plotly;

lib/index-strict.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Plotly.register([
4848
require('./sort'),
4949

5050
// components
51-
require('./calendars')
51+
require('./calendars'),
5252
]);
5353

5454
module.exports = Plotly;

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Plotly.register([
5757
require('./sort'),
5858

5959
// components
60-
require('./calendars')
60+
require('./calendars'),
6161
]);
6262

6363
module.exports = Plotly;

tasks/extra_bundles.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ for(var i = 0; i < partialBundlePaths.length; i++) {
1515
index: opts.index,
1616
dist: opts.dist,
1717
distMin: opts.distMin,
18-
traceList: opts.traceList
18+
traceList: opts.traceList,
19+
transformList: opts.transformList,
20+
calendars: opts.calendars
1921
});
2022
}
2123

0 commit comments

Comments
 (0)