change README names

This commit is contained in:
Manuel Araoz 2014-03-12 09:37:24 -03:00
parent f30aba9b39
commit c339fb1f2f
2 changed files with 2 additions and 3 deletions

View File

@ -262,7 +262,7 @@ To build bitcore full bundle for the browser:
(this is automatically executed after you run `npm install`)
```
node browser/browserify.js -a
node browser/build.js -a
```
This will generate a `browser/bundle.js` file which you can include
in your HTML to use bitcore in the browser.
@ -294,7 +294,7 @@ To generate a customized bitcore bundle, you can specify
which submodules you want to include in it with the -s option:
```
node browser/browserify.js -s Transaction,Address
node browser/build.js -s Transaction,Address
```
This will generate a `browser/bundle.js` containing only the Transaction
and Address class, with all their dependencies.

View File

@ -109,6 +109,5 @@ tb.transform('brfs');
tb.bundle().pipe(fs.createWriteStream('browser/testdata.js'));
console.log('cwd '+__dirname);