also looking at this
chore(deps): update all non-major dependencies
#9
7 files
+12
-12
Review threads live on the whole diff, not on one commit, so none are shown here - a thread's line means something in the branch's final form, and painting it into an intermediate step would put it on code it is not about.
| @@ -48,8 +48,10 @@ | ||
| 48 | 48 | "fresh": "bunx rimraf node_modules/ bun.lock && bun i", |
| 49 | 49 | "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip", |
| 50 | 50 | "test": "bun test", |
| 51 | "lint": "bunx --bun eslint .", | |
| 52 | "lint:fix": "bunx --bun eslint . --fix", | |
| 51 | "lint": "bunx --bun pickier lint .", | |
| 52 | "lint:fix": "bunx --bun pickier lint . --fix", | |
| 53 | "format": "bunx --bun pickier format .", | |
| 54 | "format:fix": "bunx --bun pickier format . --write", | |
| 53 | 55 | "changelog": "bunx logsmith --verbose", |
| 54 | 56 | "changelog:generate": "bunx logsmith --output CHANGELOG.md", |
| 55 | 57 | "release": "bun run changelog:generate && bunx bumpx prompt --recursive", |
| @@ -59,7 +61,9 @@ | ||
| 59 | 61 | "typecheck": "bun --bun tsc --noEmit" |
| 60 | 62 | }, |
| 61 | 63 | "devDependencies": { |
| 62 | "better-dx": "^0.2.5" | |
| 64 | "better-dx": "^0.2.5", | |
| 65 | "pickier": "^0.1.10", | |
| 66 | "typescript": "^5.9.3" | |
| 63 | 67 | }, |
| 64 | 68 | "workspaces": [ |
| 65 | 69 | "packages/*" |
| @@ -67,7 +71,7 @@ | ||
| 67 | 71 | "git-hooks": { |
| 68 | 72 | "pre-commit": { |
| 69 | 73 | "staged-lint": { |
| 70 | "*.{js,ts,json,yaml,yml,md}": "echo 'Linter coming soon'" | |
| 74 | "*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix" | |
| 71 | 75 | } |
| 72 | 76 | }, |
| 73 | 77 | "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG" |
| @@ -71,8 +71,10 @@ | ||
| 71 | 71 | "zip:windows-x64": "zip -j bin/cloud-windows-x64.zip bin/cloud-windows-x64.exe", |
| 72 | 72 | "zip:darwin-x64": "zip -j bin/cloud-darwin-x64.zip bin/cloud-darwin-x64", |
| 73 | 73 | "zip:darwin-arm64": "zip -j bin/cloud-darwin-arm64.zip bin/cloud-darwin-arm64", |
| 74 | "lint": "bunx --bun eslint .", | |
| 75 | "lint:fix": "bunx --bun eslint . --fix", | |
| 74 | "lint": "bunx --bun pickier lint .", | |
| 75 | "lint:fix": "bunx --bun pickier lint . --fix", | |
| 76 | "format": "bunx --bun pickier format .", | |
| 77 | "format:fix": "bunx --bun pickier format . --write", | |
| 76 | 78 | "fresh": "bunx rimraf node_modules/ bun.lock && bun i", |
| 77 | 79 | "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip", |
| 78 | 80 | "test": "bun test" |
| @@ -88,6 +90,6 @@ | ||
| 88 | 90 | "better-dx": "^0.2.3" |
| 89 | 91 | }, |
| 90 | 92 | "lint-staged": { |
| 91 | "*.{js,ts}": "bunx --bun eslint . --fix" | |
| 93 | "*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix" | |
| 92 | 94 | } |
| 93 | 95 | } |