diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-05 21:38:40 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-05 21:38:40 +0800 |
commit | 25f62daf146895a1e0e0c966166f08f28467ae2e (patch) | |
tree | 6366e90b21d8aa4198c8719f005b4e2e51f26fa3 /packages/contracts | |
parent | 44a736c53b8901ee36dbe009ad570930bbc8e676 (diff) | |
download | dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.tar dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.gz dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.bz2 dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.lz dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.xz dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.zst dexon-0x-contracts-25f62daf146895a1e0e0c966166f08f28467ae2e.zip |
- Rename watch to watch_without_deps in sub-packages, so dev's don't confuse running watch from root dir, with sub-package dir
- stop using special prebuild script name and run pre_build steps for `watch` and `build` commands
- Remove `clean` step from `build`/`watch`
Diffstat (limited to 'packages/contracts')
-rw-r--r-- | packages/contracts/package.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/contracts/package.json b/packages/contracts/package.json index 8e37a7819..67cb37a7e 100644 --- a/packages/contracts/package.json +++ b/packages/contracts/package.json @@ -11,10 +11,10 @@ "test": "test" }, "scripts": { - "watch": "tsc -w", - "prebuild": "run-s clean compile copy_artifacts generate_contract_wrappers", + "watch_without_deps": "yarn pre_build && tsc -w", + "build": "yarn pre_build && tsc", + "pre_build": "run-s compile copy_artifacts generate_contract_wrappers", "copy_artifacts": "copyfiles -u 4 '../migrations/artifacts/2.0.0/**/*' ./lib/src/artifacts;", - "build": "tsc", "test": "yarn run_mocha", "rebuild-and-test": "run-s build test", "test:coverage": "SOLIDITY_COVERAGE=true run-s build run_mocha coverage:report:text coverage:report:lcov", |