Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Remove 'prepare' from sub-packages #60

Merged
merged 1 commit into from
Aug 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/perennial-examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@
"coverage:integration": "FORK_ENABLED=true FORK_BLOCK_NUMBER=14325080 hardhat coverage --testfiles 'test/integration/*'",
"lint": "eslint --fix --ext '.ts,.js' ./ && solhint 'contracts/**/*.sol' --fix",
"format": "prettier -w .",
"prepare": "yarn clean && yarn build",
"clean": "rm -rf cache artifacts types/generated dist deployments/localhost",
"node:fork:kovan": "FORK_ENABLED=true FORK_NETWORK=kovan NODE_INTERVAL_MINING=500 hardhat node",
"deploy:fork:kovan": "FORK_ENABLED=true FORK_NETWORK=kovan hardhat deploy --network localhost",
"prepack": "yarn build && find artifacts/contracts -name '*.dbg.json' -type f -delete"
"prepack": "yarn clean && yarn build && find artifacts/contracts -name '*.dbg.json' -type f -delete"
},
"author": "",
"license": "APACHE-2.0",
Expand Down
3 changes: 1 addition & 2 deletions packages/perennial-oracle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@
"coverage:integration": "FORK_ENABLED=true FORK_BLOCK_NUMBER=14325080 hardhat coverage --testfiles 'test/integration/*'",
"lint": "eslint --fix --ext '.ts,.js' ./ && solhint 'contracts/**/*.sol' --fix",
"format": "prettier -w .",
"prepare": "yarn clean && yarn build",
"clean": "rm -rf cache artifacts types/generated dist deployments/localhost",
"node:fork:kovan": "FORK_ENABLED=true FORK_NETWORK=kovan NODE_INTERVAL_MINING=500 hardhat node",
"deploy:fork:kovan": "FORK_ENABLED=true FORK_NETWORK=kovan hardhat deploy --network localhost",
"prepack": "yarn build && find artifacts/contracts -name '*.dbg.json' -type f -delete"
"prepack": "yarn clean && yarn build && find artifacts/contracts -name '*.dbg.json' -type f -delete"
},
"author": "",
"license": "APACHE-2.0",
Expand Down
3 changes: 1 addition & 2 deletions packages/perennial/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@
"coverage:integration": "FORK_ENABLED=true FORK_BLOCK_NUMBER=14325080 hardhat coverage --testfiles 'test/integration/**/*'",
"lint": "eslint --fix --ext '.ts,.js' ./ && solhint 'contracts/**/*.sol' --fix",
"format": "prettier -w .",
"prepare": "yarn build",
"clean": "rm -rf cache artifacts types/generated deployments/localhost",
"node:fork:kovan": "FORK_ENABLED=true FORK_NETWORK=kovan NODE_INTERVAL_MINING=500 hardhat node",
"deploy:fork:kovan": "FORK_ENABLED=true FORK_NETWORK=kovan hardhat deploy --network localhost",
"prepack": "yarn build && find artifacts/contracts -name '*.dbg.json' -type f -delete"
"prepack": "yarn clean && yarn build && find artifacts/contracts -name '*.dbg.json' -type f -delete"
},
"author": "",
"license": "Apache-2.0",
Expand Down