Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into holic/test-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Aug 28, 2024
2 parents 2bf20a6 + 28fd732 commit e13d001
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/odd-coats-bake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-mud": patch
---

Templates now use `npx shx` to run shell commands in scripts for better Windows compatibility.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ templates/phaser/packages/art
CODEOWNERS
out

# forge docs output (gitignored anyway)
packages/*/docs
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "module",
"scripts": {
"all-build": "for dir in packages/store packages/world packages/world-modules packages/cli test/mock-game-contracts e2e/packages/contracts examples/*/packages/contracts examples/multiple-namespaces templates/*/packages/contracts; do (cd \"$dir\" && pwd && pnpm build); done",
"all-install": "for dir in . docs e2e examples/* templates/*; do (cd \"$dir\" && pwd && pnpm install); done",
"all-install": "pnpm recursive run prepare && for dir in . docs e2e examples/* templates/*; do (cd \"$dir\" && pwd && pnpm install); done",
"bench": "pnpm run --recursive bench",
"build": "turbo run build",
"changelog:generate": "tsx scripts/changelog.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"clean:js": "npx shx rm -rf dist",
"clean:test-tables": "npx shx rm -rf src/codegen",
"dev": "tsup --watch",
"postinstall": "npx shx mkdir -p ./dist && npx shx touch ./dist/mud.js",
"lint": "eslint . --ext .ts",
"prepare": "npx shx mkdir -p ./dist && npx shx touch ./dist/mud.js",
"test": "tsc --noEmit && forge test",
"test:ci": "pnpm run test"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/gas-report/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"build": "tsup",
"clean": "npx shx rm -rf dist",
"dev": "tsup --watch",
"postinstall": "npx shx mkdir -p ./dist && npx shx touch ./dist/gas-report.js",
"prepare": "npx shx mkdir -p ./dist && npx shx touch ./dist/gas-report.js",
"test": "vitest typecheck --run --passWithNoTests && vitest --run --passWithNoTests && forge test",
"test:ci": "pnpm run test"
},
Expand Down

0 comments on commit e13d001

Please sign in to comment.