Skip to content

Commit b6d03dd

Browse files
committed
Rename script
1 parent 49b9793 commit b6d03dd

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/node_modules/@stdlib/_tools/bundle/scripts/npm_bundles renamed to lib/node_modules/@stdlib/_tools/bundle/scripts/dist_browser_bundles

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
#!/usr/bin/env node
22

33
/**
4-
* Script to generate npm bundles.
4+
* Script to generate distributable browser bundles.
55
*
66
* ## Usages
77
*
88
* ```bash
9-
* $ DEBUG=bundle:npm-bundles node --max_old_space_size=4096 --expose_gc /path/to/bundle/scripts/npm_bundles
9+
* $ DEBUG=bundle:dist-browser-bundles node --max_old_space_size=4096 --expose_gc /path/to/bundle/scripts/dist_browser_bundles
1010
* ```
1111
*
1212
* ## Notes
1313
*
1414
* - When running this script, you may need to increase Node.js memory limits. For example,
1515
*
1616
* ```bash
17-
* $ node --max_old_space_size=4096 ./lib/node_modules/\@stdlib/_tools/bundle/scripts/npm_bundles
17+
* $ node --max_old_space_size=4096 ./lib/node_modules/\@stdlib/_tools/bundle/scripts/dist_browser_bundles
1818
* ```
1919
*
2020
* - To allow for manual garbage collection, expose garbage collection using the `--expose_gc` command-line flag
2121
*
2222
* ```bash
23-
* $ node --expose_gc ./lib/node_modules/\@stdlib/_tools/bundle/scripts/npm_bundles
23+
* $ node --expose_gc ./lib/node_modules/\@stdlib/_tools/bundle/scripts/dist_browser_bundles
2424
* ```
2525
*
2626
* @private
2727
*/
2828
'use strict';
2929

30-
var debug = require( 'debug' )( 'bundle:npm-bundles' );
30+
var debug = require( 'debug' )( 'bundle:dist-browser-bundles' );
3131
var join = require( 'path' ).join;
3232
var resolve = require( 'path' ).resolve;
3333
var writeFile = require( 'fs' ).writeFile;

0 commit comments

Comments
 (0)