Skip to content

Commit

Permalink
build: use shx from dev deps (#3085)
Browse files Browse the repository at this point in the history
  • Loading branch information
holic authored Aug 28, 2024
1 parent 28fd732 commit c0bb0da
Show file tree
Hide file tree
Showing 52 changed files with 491 additions and 55 deletions.
2 changes: 1 addition & 1 deletion .changeset/odd-coats-bake.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"create-mud": patch
---

Templates now use `npx shx` to run shell commands in scripts for better Windows compatibility.
Templates now use `shx` to run shell commands in scripts for better Windows compatibility.
3 changes: 2 additions & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"test:ci": "pnpm run test"
},
"devDependencies": {
"@playwright/test": "1.35.1"
"@playwright/test": "1.35.1",
"shx": "^0.3.4"
}
}
2 changes: 1 addition & 1 deletion 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": "npx shx rm -rf dist",
"clean": "shx rm -rf dist",
"dev": "vite"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion 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 && npx shx rm -rf src/codegen",
"clean": "forge clean && shx rm -rf src/codegen",
"deploy:local": "mud deploy",
"test": "mud test",
"test:ci": "pnpm run test"
Expand Down
Loading

0 comments on commit c0bb0da

Please sign in to comment.