Skip to content

Rename browserify wrapper #6495

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tasks/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var prependFile = require('prepend-file');

var constants = require('./util/constants');
var common = require('./util/common');
var _bundle = require('./util/browserify_wrapper');
var _bundle = require('./util/bundle_wrapper');

var header = constants.licenseDist + '\n';
var pathToPlotlyDist = constants.pathToPlotlyDist;
Expand Down
2 changes: 1 addition & 1 deletion tasks/cibundle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var constants = require('./util/constants');
var _bundle = require('./util/browserify_wrapper');
var _bundle = require('./util/bundle_wrapper');

/*
* Trimmed down version of ./bundle.js for CI testing
Expand Down
2 changes: 1 addition & 1 deletion tasks/locales.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var wrapLocale = require('./util/wrap_locale');
var pathToLib = constants.pathToLib;
var pathToDist = constants.pathToDist;

// "Browserify" the locales
// Bundle the locales
var localeGlob = path.join(pathToLib, 'locales', '*.js');
glob(localeGlob, function(err, files) {
files.forEach(function(file) {
Expand Down
2 changes: 1 addition & 1 deletion tasks/partial_bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var prependFile = require('prepend-file');

var constants = require('./util/constants');
var common = require('./util/common');
var _bundle = require('./util/browserify_wrapper');
var _bundle = require('./util/bundle_wrapper');

var header = constants.licenseDist + '\n';
var allTransforms = constants.allTransforms;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var nRules = config.module.rules.length;
* @param {string} pathToIndex path to index file to bundle
* @param {string} pathToBunlde path to destination bundle
* @param {object} opts
* Browserify options:
* Bundle options:
* - standalone {string}
* Additional option:
* - pathToMinBundle {string} path to destination minified bundle
Expand Down