Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

# Build before typecheck and test:
# - test/demo-invariants.test.ts imports from `../demo/src/...`;
# tsgo follows the import and pulls those demo files in, which
# tsc follows the import and pulls those demo files in, which
# in turn require `unitforge` (the root package) to resolve via
# dist/. Without dist/ first, typecheck reports demo errors.
# - test/subpathExports.test.ts verifies the package.json `exports`
Expand All @@ -51,7 +51,7 @@ jobs:
working-directory: ./demo
run: bun install --no-frozen-lockfile

- name: Typecheck (tsgo)
- name: Typecheck (tsc)
run: bun run typecheck

- name: Package hygiene (publint + attw)
Expand Down
24 changes: 4 additions & 20 deletions bun.lock

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

4 changes: 2 additions & 2 deletions demo/bun.lock

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

2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^5",
"tailwindcss": "^4.3.2",
"typescript": "^5.6.3",
"typescript": "^6.0.3",
"vite": "^8.1.4"
}
}
1 change: 0 additions & 1 deletion demo/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"isolatedModules": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
],
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && tsgo",
"typecheck": "tsgo --noEmit && tsgo --noEmit --project tsconfig.test.json",
"build": "bun run clean && tsc",
"typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.test.json",
"typecheck:demo": "cd demo && bunx tsc --noEmit",
"lint": "biome check",
"lint:fix": "biome check --write",
Expand All @@ -96,11 +96,11 @@
"@semantic-release/npm": "^13.1.5",
"@stryker-mutator/core": "^9.6.1",
"@types/bun": "^1.3.14",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"fast-check": "^4.9.0",
"knip": "^6.26.0",
"publint": "^0.3.21",
"semantic-release": "^25.0.5"
"semantic-release": "^25.0.5",
"typescript": "^7.0.2"
},
"publishConfig": {
"access": "public"
Expand Down
3 changes: 2 additions & 1 deletion stryker.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
"timeoutMS": 60000,
"concurrency": 4,
"incremental": true,
"incrementalFile": ".stryker-tmp/incremental.json"
"incrementalFile": ".stryker-tmp/incremental.json",
"ignorePatterns": ["tsconfig.json", "tsconfig.test.json"]
}