Skip to content

Commit 7aa375c

Browse files
committed
fix typos related to cibundle
1 parent fe148e4 commit 7aa375c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"postinstall": "npm run preprocess",
4747
"bundle": "node tasks/bundle.js",
4848
"build": "npm run preprocess && npm run bundle",
49-
"cibuild": "npm run preprocess && npm run cibundle.js",
49+
"cibuild": "npm run preprocess && node tasks/cibundle.js",
5050
"watch": "node tasks/watch_plotly.js",
5151
"lint": "cd src && jshint . || true",
5252
"test-jasmine": "karma start test/jasmine/karma.conf.js",

tasks/cibundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ browserify(constants.pathToPlotlySrc, {
2626
})
2727
.pipe(fs.createWriteStream(constants.pathToPlotlyBuild))
2828
.on('finish', function() {
29-
appendVersion(constants.pathToPlotlyDist, {object: 'Plotly'});
29+
appendVersion(constants.pathToPlotlyBuild, {object: 'Plotly'});
3030
});
3131

3232

0 commit comments

Comments
 (0)