Skip to content

Commit

Permalink
chore: sort scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli committed Oct 18, 2024
1 parent 4f0355f commit a72a642
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
"version": "1.2.0",
"scripts": {
"build": "run-s compile export",
"clean:ignored": "rimraf artifacts cache coverage deployments/localhost dist generated-src src/types/*",
"clean:hardhat": "hardhat clean",
"clean": "run-s clean:hardhat clean:ignored",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist/src",
"clean:hardhat": "hardhat clean",
"clean:ignored": "rimraf artifacts cache coverage deployments/localhost dist generated-src src/types/*",
"compile": "hardhat compile",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist/src",
"deploy": "run-s deploy:development",
"deploy:testnets": "run-s deploy:arbitrum_sepolia deploy:optimism_sepolia deploy:sepolia",
"deploy:mainnets": "run-s deploy:arbitrum deploy:mainnet deploy:optimism",
"deploy:development": "hardhat deploy --network localhost",
"deploy:arbitrum": "hardhat deploy --network arbitrum --export export/abi/arbitrum.json",
"deploy:arbitrum_sepolia": "hardhat deploy --network arbitrum_sepolia --export export/abi/arbitrum_sepolia.json",
"deploy:development": "hardhat deploy --network localhost",
"deploy:mainnet": "hardhat deploy --network mainnet --export export/abi/mainnet.json",
"deploy:mainnets": "run-s deploy:arbitrum deploy:mainnet deploy:optimism",
"deploy:optimism": "hardhat deploy --network optimism --export export/abi/optimism.json",
"deploy:optimism_sepolia": "hardhat deploy --network optimism_sepolia --export export/abi/optimism_sepolia.json",
"deploy:sepolia": "hardhat deploy --network sepolia --export export/abi/sepolia.json",
"deploy:testnets": "run-s deploy:arbitrum_sepolia deploy:optimism_sepolia deploy:sepolia",
"export": "hardhat export-artifacts export/artifacts --hide-sources --including-empty-bytecode --including-no-public-functions",
"fmt:check": "prettier --check '**/*.sol' '**/*.ts'",
"fmt:write": "prettier --check --write '**/*.sol' '**/*.ts'",
Expand Down

0 comments on commit a72a642

Please sign in to comment.