diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-09 01:23:44 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-09 01:23:44 +0800 |
commit | d5757499bc0f828fbf86ffea2da8ad3941f1c33e (patch) | |
tree | 6f429e6f2b3050de6dd7ce16e42c7f387bd5018a /packages/subproviders/package.json | |
parent | 139c8c2e783ffbbf22473604419fe3e5b299be0e (diff) | |
parent | af8d24d0eb5af781f4731b5559979f2b02579785 (diff) | |
download | dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.gz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.bz2 dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.lz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.xz dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.zst dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.zip |
Merge branch 'feature/addSubproviders' into feature/portal-ledger-support
* feature/addSubproviders:
remove console.log
Update README.md
Fix unit test
Add missing params
Debug CircleCi failure
Update yarn.lock
Inline network module
Add todo
Stop supporting different file extensions in abi-gen
Refactor networkId out of web3Wrapper
Update connect types in preperation for publishing
Add link to random id generator
Remove `prebuild` command and add `test:circleci`
Fix CI command
Address feedback
Refactor web3Wrapper to a separate package
Diffstat (limited to 'packages/subproviders/package.json')
-rw-r--r-- | packages/subproviders/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/subproviders/package.json b/packages/subproviders/package.json index 11d116278..c3ecfd2f0 100644 --- a/packages/subproviders/package.json +++ b/packages/subproviders/package.json @@ -5,13 +5,13 @@ "types": "lib/src/index.d.ts", "license": "Apache-2.0", "scripts": { - "prebuild": "npm run clean", "clean": "shx rm -rf lib", "build": "tsc", "lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'", "run_mocha_unit": "mocha lib/test/unit/**/*_test.js --timeout 10000 --bail --exit", "run_mocha_integration": "mocha lib/test/integration/**/*_test.js --timeout 10000 --bail --exit", "test": "npm run test:unit", + "test:circleci": "npm run test:unit", "test:all": "run-s test:unit test:integration", "test:unit": "run-s clean build run_mocha_unit", "test:integration": "run-s clean build run_mocha_integration" |