Skip to content

Commit 2d0c8b5

Browse files
committed
Move dev tool to lib
1 parent 054c748 commit 2d0c8b5

File tree

15 files changed

+3
-3
lines changed

15 files changed

+3
-3
lines changed

tools/browserify/README.md renamed to lib/node_modules/@stdlib/_tools/browserify/README.md

File renamed without changes.

tools/browserify/bundle/README.md renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
## Usage
1818

1919
```javascript
20-
var bundle = require( '@stdlib/tools/browserify/bundle' );
20+
var bundle = require( '@stdlib/_tools/browserify/bundle' );
2121
```
2222

2323
#### bundle( files, \[dest,] clbk )
@@ -77,7 +77,7 @@ function clbk( error ) {
7777

7878
```javascript
7979
var join = require( 'path' ).join;
80-
var bundle = require( '@stdlib/tools/browserify/bundle' );
80+
var bundle = require( '@stdlib/_tools/browserify/bundle' );
8181

8282
var fpath = join( __dirname, 'fixtures', 'index.js' );
8383
var files = [ fpath ];

tools/browserify/bundle/bin/cli renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/bin/cli

File renamed without changes.

tools/browserify/bundle/bin/opts.json renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/bin/opts.json

File renamed without changes.

tools/browserify/bundle/bin/usage.txt renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/bin/usage.txt

File renamed without changes.

tools/browserify/bundle/examples/fixtures/index.js renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/examples/fixtures/index.js

File renamed without changes.

tools/browserify/bundle/examples/index.js renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/examples/index.js

File renamed without changes.

tools/browserify/bundle/lib/bundle.js renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/lib/bundle.js

File renamed without changes.

tools/browserify/bundle/lib/index.js renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/lib/index.js

File renamed without changes.

tools/browserify/bundle/package.json renamed to lib/node_modules/@stdlib/_tools/browserify/bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/tools/browserify/bundle",
2+
"name": "@stdlib/_tools/browserify/bundle",
33
"version": "0.0.0",
44
"description": "Bundle one or more files into a single file using browserify.",
55
"author": {

0 commit comments

Comments
 (0)