From aed4ee8694af4cdc491034185ab4ea14a697a9da Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Fri, 1 Jun 2018 12:05:57 -0700 Subject: Split migrations compile command into one for V1 and another for V2 --- packages/migrations/package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/migrations/package.json b/packages/migrations/package.json index a3f9ca501..1d0e74d74 100644 --- a/packages/migrations/package.json +++ b/packages/migrations/package.json @@ -14,8 +14,8 @@ "build": "tsc", "clean": "shx rm -rf lib src/contract_wrappers", "lint": "tslint --project .", - "migrate:v1": "run-s build compile script:migrate:v1", - "migrate:v2": "run-s build compile script:migrate:v2", + "migrate:v1": "run-s build compile:v1 script:migrate:v1", + "migrate:v2": "run-s build compile:v2 script:migrate:v2", "script:migrate:v1": "node ./lib/migrate.js --contracts-version 1.0.0", "script:migrate:v2": "node ./lib/migrate.js --contracts-version 2.0.0", "generate_contract_wrappers": "run-p generate_contract_wrappers:*", @@ -23,7 +23,8 @@ "abi-gen --abis ${npm_package_config_abis_v1} --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/v1/contract_wrappers --backend ethers && prettier --write 'src/v1/contract_wrappers/**.ts'", "generate_contract_wrappers:v2": "abi-gen --abis ${npm_package_config_abis_v2} --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/v2/contract_wrappers --backend ethers && prettier --write 'src/v2/contract_wrappers/**.ts'", - "compile": "sol-compiler" + "compile:v1": "sol-compiler --artifacts-dir artifacts/1.0.0 --contracts Exchange_v1,DummyERC20Token,ZRXToken,WETH9,TokenTransferProxy_v1,MultiSigWallet,MultiSigWalletWithTimeLock,MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress,TokenRegistry", + "compile:v2": "sol-compiler --artifacts-dir artifacts/2.0.0 --contracts DummyERC20Token,DummyERC721Token,ERC20Proxy,ERC721Proxy,Exchange,MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress,ZRXToken,WETH9" }, "config": { "abis": { -- cgit v1.2.3