Skip to content

Commit 642315e

Browse files
committed
README: remove dist/ and clarify installation of other packages
1 parent 75ca385 commit 642315e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,14 @@ var foobar = {
6666
module.exports = foobar
6767
```
6868

69-
Then, using browserify, compile `foobar.js` for use in the browser:
69+
Each of these included packages are seperate to `bitcoinjs-lib`, and must be installed separately.
70+
They are however used in the bitcoinjs-lib public API.
7071

71-
$ browserify foobar.js -s foobar > dist/foobar.js
72+
Using browserify, compile `foobar.js` for use in the browser:
7273

73-
You will then be able to load `dist/foobar.js` into your browser, with each of the dependencies above accessible from the global `foobar` object.
74+
$ browserify foobar.js -s foobar > foobar.js
75+
76+
You will then be able to load `foobar.js` into your browser, with each of the dependencies above accessible from the global `foobar` object.
7477

7578
**NOTE**: See our package.json for the currently supported version of browserify used by this repository.
7679

0 commit comments

Comments
 (0)