File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ var prependFile = require('prepend-file');
3
3
4
4
var constants = require ( './util/constants' ) ;
5
5
var common = require ( './util/common' ) ;
6
- var _bundle = require ( './util/browserify_wrapper ' ) ;
6
+ var _bundle = require ( './util/bundle_wrapper ' ) ;
7
7
8
8
var header = constants . licenseDist + '\n' ;
9
9
var pathToPlotlyDist = constants . pathToPlotlyDist ;
Original file line number Diff line number Diff line change 1
1
var constants = require ( './util/constants' ) ;
2
- var _bundle = require ( './util/browserify_wrapper ' ) ;
2
+ var _bundle = require ( './util/bundle_wrapper ' ) ;
3
3
4
4
/*
5
5
* Trimmed down version of ./bundle.js for CI testing
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ var wrapLocale = require('./util/wrap_locale');
7
7
var pathToLib = constants . pathToLib ;
8
8
var pathToDist = constants . pathToDist ;
9
9
10
- // "Browserify" the locales
10
+ // Bundle the locales
11
11
var localeGlob = path . join ( pathToLib , 'locales' , '*.js' ) ;
12
12
glob ( localeGlob , function ( err , files ) {
13
13
files . forEach ( function ( file ) {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ var prependFile = require('prepend-file');
2
2
3
3
var constants = require ( './util/constants' ) ;
4
4
var common = require ( './util/common' ) ;
5
- var _bundle = require ( './util/browserify_wrapper ' ) ;
5
+ var _bundle = require ( './util/bundle_wrapper ' ) ;
6
6
7
7
var header = constants . licenseDist + '\n' ;
8
8
var allTransforms = constants . allTransforms ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ var nRules = config.module.rules.length;
11
11
* @param {string } pathToIndex path to index file to bundle
12
12
* @param {string } pathToBunlde path to destination bundle
13
13
* @param {object } opts
14
- * Browserify options:
14
+ * Bundle options:
15
15
* - standalone {string}
16
16
* Additional option:
17
17
* - pathToMinBundle {string} path to destination minified bundle
You can’t perform that action at this time.
0 commit comments