Skip to content

Commit 66e4d01

Browse files
authored
Merge pull request #6495 from plotly/rename-browserify-wrapper
Rename browserify wrapper
2 parents 938cb46 + baf1331 commit 66e4d01

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tasks/bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var prependFile = require('prepend-file');
33

44
var constants = require('./util/constants');
55
var common = require('./util/common');
6-
var _bundle = require('./util/browserify_wrapper');
6+
var _bundle = require('./util/bundle_wrapper');
77

88
var header = constants.licenseDist + '\n';
99
var pathToPlotlyDist = constants.pathToPlotlyDist;

tasks/cibundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var constants = require('./util/constants');
2-
var _bundle = require('./util/browserify_wrapper');
2+
var _bundle = require('./util/bundle_wrapper');
33

44
/*
55
* Trimmed down version of ./bundle.js for CI testing

tasks/locales.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var wrapLocale = require('./util/wrap_locale');
77
var pathToLib = constants.pathToLib;
88
var pathToDist = constants.pathToDist;
99

10-
// "Browserify" the locales
10+
// Bundle the locales
1111
var localeGlob = path.join(pathToLib, 'locales', '*.js');
1212
glob(localeGlob, function(err, files) {
1313
files.forEach(function(file) {

tasks/partial_bundle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var prependFile = require('prepend-file');
22

33
var constants = require('./util/constants');
44
var common = require('./util/common');
5-
var _bundle = require('./util/browserify_wrapper');
5+
var _bundle = require('./util/bundle_wrapper');
66

77
var header = constants.licenseDist + '\n';
88
var allTransforms = constants.allTransforms;

tasks/util/browserify_wrapper.js renamed to tasks/util/bundle_wrapper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var nRules = config.module.rules.length;
1111
* @param {string} pathToIndex path to index file to bundle
1212
* @param {string} pathToBunlde path to destination bundle
1313
* @param {object} opts
14-
* Browserify options:
14+
* Bundle options:
1515
* - standalone {string}
1616
* Additional option:
1717
* - pathToMinBundle {string} path to destination minified bundle

0 commit comments

Comments
 (0)