Skip to content

Commit c0bb0da

Browse files
authored
build: use shx from dev deps (latticexyz#3085)
1 parent 28fd732 commit c0bb0da

File tree

52 files changed

+491
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+491
-55
lines changed

.changeset/odd-coats-bake.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"create-mud": patch
33
---
44

5-
Templates now use `npx shx` to run shell commands in scripts for better Windows compatibility.
5+
Templates now use `shx` to run shell commands in scripts for better Windows compatibility.

e2e/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"test:ci": "pnpm run test"
1212
},
1313
"devDependencies": {
14-
"@playwright/test": "1.35.1"
14+
"@playwright/test": "1.35.1",
15+
"shx": "^0.3.4"
1516
}
1617
}

e2e/packages/client-vanilla/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "module",
77
"scripts": {
88
"build": "vite build",
9-
"clean": "npx shx rm -rf dist",
9+
"clean": "shx rm -rf dist",
1010
"dev": "vite"
1111
},
1212
"dependencies": {

e2e/packages/contracts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"scripts": {
77
"build": "mud build",
8-
"clean": "forge clean && npx shx rm -rf src/codegen",
8+
"clean": "forge clean && shx rm -rf src/codegen",
99
"deploy:local": "mud deploy",
1010
"test": "mud test",
1111
"test:ci": "pnpm run test"

0 commit comments

Comments
 (0)