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: 1 addition & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,4 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Publish package
run: pnpm publish --access public --no-git-checks --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access public --provenance
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.11/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,26 +92,26 @@
}
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"@clack/prompts": "1.0.0",
"cac": "^6.7.14",
"cli-truncate": "^4.0.0",
"execa": "^9.6.1",
"fast-glob": "^3.3.2",
"log-update": "^7.0.2",
"fast-glob": "^3.3.3",
"log-update": "7.0.2",
"picocolors": "^1.1.1",
"picomatch": "^4.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@size-limit/file": "^12.0.0",
"@types/node": "^25.2.0",
"bumpp": "^10.3.2",
"@biomejs/biome": "^2.4.11",
"@size-limit/file": "^12.0.1",
"@types/node": "^25.6.0",
"bumpp": "^11.0.1",
Comment on lines 105 to +109
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is described as a release workflow change, but it also upgrades multiple dependencies (e.g. @biomejs/biome, @types/node, bumpp, etc.) and adjusts local git hooks. If those are not required for the trusted publishing switch, consider splitting them into a separate PR to reduce release/publish risk.

Copilot uses AI. Check for mistakes.
"c8": "^10.1.3",
"jiti": "^2.5.1",
"lint-staged": "^16.2.7",
"jiti": "^2.6.1",
"lint-staged": "^16.4.0",
"simple-git-hooks": "^2.13.1",
"size-limit": "^12.0.0",
"size-limit": "^12.0.1",
Comment on lines +111 to +114
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

size-limit was bumped to ^12.0.1, which (per the lockfile) now requires Node ^20 || ^22 || >=24. The repo’s CI still runs pnpm size and pnpm build on Node 18, so this update is likely to break those jobs. Either pin size-limit/@size-limit/file back to a Node-18-compatible release, or raise the project’s supported Node version and update CI accordingly.

Copilot uses AI. Check for mistakes.
"tinybench": "^6.0.0",
"ts-complex": "^1.0.0",
"typescript": "^5.9.3",
Expand All @@ -129,7 +129,8 @@
"top": 10
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm typecheck"
"pre-commit": "pnpm lint && pnpm lint-staged && pnpm typecheck",
"pre-push": "pnpm lint"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
Expand Down
Loading
Loading