Split migrations compile command into one for V1 and another for V2
This commit is contained in:
parent
9ca41b9536
commit
aed4ee8694
@ -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": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user