-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: run store TS tests from root (#3260)
- Loading branch information
Showing
16 changed files
with
776 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"build": "turbo run build", | ||
"changelog:generate": "tsx scripts/changelog.ts", | ||
"clean": "turbo run clean", | ||
"dev": "TSUP_SKIP_DTS=true turbo run dev --concurrency 100", | ||
"dev": "TSUP_SKIP_DTS=true turbo run dev --concurrency 100 --filter !@latticexyz/explorer", | ||
"dist-tag-rm": "pnpm recursive exec -- sh -c 'npm dist-tag rm $(cat package.json | jq -r \".name\") $TAG || true'", | ||
"docs:generate:api": "tsx scripts/render-api-docs.ts", | ||
"fix:package-json": "sort-package-json package.json 'packages/*/package.json' 'templates/*/package.json' 'templates/*/packages/*/package.json' 'examples/*/package.json' 'examples/*/packages/*/package.json' 'e2e/*/package.json' 'e2e/*/packages/*/package.json' 'docs/package.json' 'test/*/package.json'", | ||
|
@@ -25,8 +25,9 @@ | |
"release:check": "changeset status --verbose --since=origin/main", | ||
"release:publish": "pnpm install && pnpm build && changeset publish", | ||
"release:version": "changeset version && pnpm install --lockfile-only && pnpm run changelog:generate", | ||
"test": "pnpm run --recursive test", | ||
"test:ci": "pnpm run --recursive --parallel test:ci", | ||
"test": "pnpm run test:setup && pnpm run --recursive test", | ||
"test:ci": "pnpm run test:setup && pnpm run --recursive test:ci", | ||
"test:setup": "tsx test-setup/startAnvil.ts & pnpm run --filter mock-game-contracts build", | ||
"type-bench": "pnpm --filter ./test/ts-benchmarks bench", | ||
"type-stats-repo": "attest stats packages/*", | ||
"vercel:prepare": "(forge --version || pnpm foundryup) && ln -sf /vercel/.foundry/bin/* node_modules/.bin/ && forge --version" | ||
|
@@ -42,9 +43,10 @@ | |
"@types/node": "^18.15.11", | ||
"@typescript-eslint/eslint-plugin": "7.1.1", | ||
"@typescript-eslint/parser": "7.1.1", | ||
"@viem/anvil": "^0.0.7", | ||
"chalk": "^5.2.0", | ||
"eslint": "8.57.0", | ||
"execa": "^7.0.0", | ||
"execa": "^9.4.0", | ||
"glob": "^10.4.2", | ||
"husky": ">=6", | ||
"lint-staged": "^15.2.10", | ||
|
@@ -54,7 +56,9 @@ | |
"sort-package-json": "^2.10.1", | ||
"tsx": "4.16.2", | ||
"turbo": "^1.9.3", | ||
"typescript": "5.4.2" | ||
"typescript": "5.4.2", | ||
"viem": "catalog:", | ||
"vitest": "2.1.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// Nothing here yet. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.