aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/package.json
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-05 21:38:40 +0800
committerFabio Berger <me@fabioberger.com>2018-06-05 21:38:40 +0800
commit25f62daf146895a1e0e0c966166f08f28467ae2e (patch)
tree6366e90b21d8aa4198c8719f005b4e2e51f26fa3 /packages/sol-compiler/package.json
parent44a736c53b8901ee36dbe009ad570930bbc8e676 (diff)
downloaddexon-sol-tools-25f62daf146895a1e0e0c966166f08f28467ae2e.tar
dexon-sol-tools-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.gz
dexon-sol-tools-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.bz2
dexon-sol-tools-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.lz
dexon-sol-tools-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.xz
dexon-sol-tools-25f62daf146895a1e0e0c966166f08f28467ae2e.tar.zst
dexon-sol-tools-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/sol-compiler/package.json')
-rw-r--r--packages/sol-compiler/package.json6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/sol-compiler/package.json b/packages/sol-compiler/package.json
index 8d26179b5..4a95a696b 100644
--- a/packages/sol-compiler/package.json
+++ b/packages/sol-compiler/package.json
@@ -8,8 +8,10 @@
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
- "watch": "tsc -w",
- "build": "yarn clean && copyfiles 'test/fixtures/contracts/**/*' ./lib && tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
+ "watch_without_deps": "yarn pre_build && tsc -w",
+ "build": "yarn pre_build && tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
+ "pre_build": "run-s update_contract_fixtures",
+ "update_contract_fixtures": "copyfiles 'test/fixtures/contracts/**/*' ./lib",
"test": "yarn run_mocha",
"rebuild-and-test": "run-s build test",
"run_mocha": "mocha lib/test/*_test.js --bail --exit",