Skip to content

Commit

Permalink
build: move bash commands in scripts to shx
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Aug 28, 2024
1 parent 1c79e87 commit ab53cdd
Show file tree
Hide file tree
Showing 53 changed files with 58 additions and 536 deletions.
File renamed without changes.
3 changes: 1 addition & 2 deletions e2e/packages/client-vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "module",
"scripts": {
"build": "vite build",
"clean": "rimraf dist",
"clean": "npx shx rm -rf dist",
"dev": "vite"
},
"dependencies": {
Expand All @@ -30,7 +30,6 @@
"viem": "2.19.8"
},
"devDependencies": {
"rimraf": "^3.0.2",
"vite": "^4.2.1",
"vitest": "0.34.6"
}
Expand Down
3 changes: 1 addition & 2 deletions e2e/packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"scripts": {
"build": "mud build",
"clean": "forge clean && rimraf src/codegen",
"clean": "forge clean && npx shx rm -rf src/codegen",
"deploy:local": "mud deploy",
"test": "mud test",
"test:ci": "pnpm run test"
Expand All @@ -21,7 +21,6 @@
"ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"forge-std": "https://github.com/foundry-rs/forge-std.git#74cfb77e308dd188d2f58864aaf44963ae6b88b1",
"prettier": "3.2.5",
"rimraf": "^3.0.2",
"typescript": "5.4.2",
"vite": "^4.2.1",
"vitest": "0.34.6"
Expand Down
87 changes: 0 additions & 87 deletions e2e/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion examples/local-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"@typescript-eslint/parser": "7.1.1",
"eslint": "8.57.0",
"mprocs": "^0.6.4",
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/local-explorer/packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"scripts": {
"build": "mud build",
"clean": "forge clean && rimraf src/codegen",
"clean": "forge clean && npx shx rm -rf src/codegen",
"deploy:garnet": "mud deploy --profile=garnet",
"deploy:local": "mud deploy",
"deploy:redstone": "mud deploy --profile=redstone",
Expand Down
3 changes: 0 additions & 3 deletions examples/local-explorer/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions examples/minimal/packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"scripts": {
"build": "mud build",
"clean": "forge clean && rimraf src/codegen",
"clean": "forge clean && npx shx rm -rf src/codegen",
"deploy:local": "mud deploy",
"dev": "mud dev-contracts",
"faucet": "DEBUG=mud:faucet faucet-server",
Expand All @@ -27,11 +27,9 @@
"forge-std": "https://github.com/foundry-rs/forge-std.git#74cfb77e308dd188d2f58864aaf44963ae6b88b1",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"rimraf": "^3.0.2",
"solhint": "^3.4.1",
"solhint-config-mud": "file:../../../../packages/solhint-config-mud",
"solhint-plugin-mud": "file:../../../../packages/solhint-plugin-mud",
"ts-node": "^10.9.1",
"typescript": "5.4.2"
}
}
Loading

0 comments on commit ab53cdd

Please sign in to comment.