Skip to content

Commit e5a0cd9

Browse files
committed
Change pathToPlotlySrc to pathToPlotlyIndex
1 parent 72c540e commit e5a0cd9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

tasks/bundle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ catch(e) {
3535

3636

3737
// Browserify plotly.js
38-
browserify(constants.pathToPlotlySrc, {
38+
browserify(constants.pathToPlotlyIndex, {
3939
debug: DEV,
4040
standalone: 'Plotly',
4141
transform: [compressAttributes]
@@ -65,7 +65,7 @@ browserify(constants.pathToPlotlyGeoAssetsSrc, {
6565

6666

6767
// Browserify the plotly.js with meta
68-
browserify(constants.pathToPlotlySrc, {
68+
browserify(constants.pathToPlotlyIndex, {
6969
debug: DEV,
7070
standalone: 'Plotly'
7171
})

tasks/cibundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var constants = require('./util/constants');
1616

1717

1818
// Browserify plotly.js
19-
browserify(constants.pathToPlotlySrc, {
19+
browserify(constants.pathToPlotlyIndex, {
2020
standalone: 'Plotly',
2121
transform: [compressAttributes]
2222
})

tasks/util/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
pathToSrc: pathToSrc,
2121
pathToLib: pathToLib,
2222

23-
pathToPlotlySrc: path.join(pathToLib, 'index.js'),
23+
pathToPlotlyIndex: path.join(pathToLib, 'index.js'),
2424
pathToPlotlyCore: path.join(pathToSrc, 'core.js'),
2525
pathToPlotlyBuild: path.join(pathToBuild, 'plotly.js'),
2626
pathToPlotlyDist: path.join(pathToDist, 'plotly.js'),

tasks/util/make_watchified_bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var constants = require('./constants');
1818
*
1919
*/
2020
module.exports = function makeWatchifiedBundle(onFirstBundleCallback) {
21-
var b = browserify(constants.pathToPlotlySrc, {
21+
var b = browserify(constants.pathToPlotlyIndex, {
2222
debug: true,
2323
standalone: 'Plotly',
2424
transform: [compressAttributes],

0 commit comments

Comments
 (0)