pkg: link bclient to bin

This commit is contained in:
Matthew Zipkin 2019-02-20 15:05:11 -08:00
parent f585d8616d
commit 08b23c1777
No known key found for this signature in database
GPG Key ID: E7E2984B6289C93A
3 changed files with 14 additions and 1 deletions

5
bin/bcoin-cli Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env node
'use strict';
require('bclient/bin/bcoin-cli');

6
bin/bwallet-cli Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env node
'use strict';
require('bclient/bin/bwallet-cli');

View File

@ -59,7 +59,9 @@
"bcoin": "./bin/bcoin",
"bcoin-node": "./bin/node",
"bcoin-spvnode": "./bin/spvnode",
"bwallet": "./bin/bwallet"
"bwallet": "./bin/bwallet",
"bcoin-cli": "./bin/bcoin-cli",
"bwallet-cli": "./bin/bwallet-cli"
},
"scripts": {
"browserify": "browserify -s bcoin lib/bcoin-browser.js | uglifyjs -c > bcoin.js",