ReviewOS

also looking at this

stacks/ts-cloud

chore(deps): update all non-major dependencies

#9
Closed chrisbbreuer wants to merge buddy-bot/update-non-major-updates-1763193791200 into main
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.

.github/workflows/release.ymlmodified+1-1
Changes to .github/workflows/release.yml
@@ -1,4 +1,4 @@
1name: Releaser
1name: Releaser / npm
22
33on:
44 push:
package.jsonmodified+8-4
Changes to package.json
@@ -48,8 +48,10 @@
4848 "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
4949 "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
5050 "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",
5355 "changelog": "bunx logsmith --verbose",
5456 "changelog:generate": "bunx logsmith --output CHANGELOG.md",
5557 "release": "bun run changelog:generate && bunx bumpx prompt --recursive",
@@ -59,7 +61,9 @@
5961 "typecheck": "bun --bun tsc --noEmit"
6062 },
6163 "devDependencies": {
62 "better-dx": "^0.2.5"
64 "better-dx": "^0.2.5",
65 "pickier": "^0.1.10",
66 "typescript": "^5.9.3"
6367 },
6468 "workspaces": [
6569 "packages/*"
@@ -67,7 +71,7 @@
6771 "git-hooks": {
6872 "pre-commit": {
6973 "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"
7175 }
7276 },
7377 "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
packages/ts-cloud/package.jsonmodified+5-3
Changes to packages/ts-cloud/package.json
@@ -71,8 +71,10 @@
7171 "zip:windows-x64": "zip -j bin/cloud-windows-x64.zip bin/cloud-windows-x64.exe",
7272 "zip:darwin-x64": "zip -j bin/cloud-darwin-x64.zip bin/cloud-darwin-x64",
7373 "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",
7678 "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
7779 "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
7880 "test": "bun test"
@@ -88,6 +90,6 @@
8890 "better-dx": "^0.2.3"
8991 },
9092 "lint-staged": {
91 "*.{js,ts}": "bunx --bun eslint . --fix"
93 "*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
9294 }
9395}