-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): use npm trusted publishing in release workflow #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6abb890
9b333c2
47dbdcb
b4e9fdb
dc2c118
f7c6839
0f1e484
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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", | ||
| "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
|
||
| "tinybench": "^6.0.0", | ||
| "ts-complex": "^1.0.0", | ||
| "typescript": "^5.9.3", | ||
|
|
@@ -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}": [ | ||
|
|
||
There was a problem hiding this comment.
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.