ReviewOS

also looking at this

stacks/bunpress

chore(deps): update all non-major dependencies

#22
Closed chrisbbreuer wants to merge buddy-bot/update-non-major-updates-1760992614025 into main
5 files +17 -17

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/ci.ymlmodified+8-8
Changes to .github/workflows/ci.yml
@@ -21,10 +21,10 @@ jobs:
2121 - uses: actions/checkout@v4
2222
2323 - name: Install Bun
24 uses: oven-sh/setup-bun@v2
24 uses: oven-sh/setup-bun@v2.0.2
2525
2626 - name: Use cached node_modules
27 uses: actions/cache@v4
27 uses: actions/cache@v4.3.0
2828 with:
2929 path: node_modules
3030 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -44,10 +44,10 @@ jobs:
4444 - uses: actions/checkout@v4
4545
4646 - name: Install Bun
47 uses: oven-sh/setup-bun@v2
47 uses: oven-sh/setup-bun@v2.0.2
4848
4949 - name: Use cached node_modules
50 uses: actions/cache@v4
50 uses: actions/cache@v4.3.0
5151 with:
5252 path: node_modules
5353 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -67,10 +67,10 @@ jobs:
6767 - uses: actions/checkout@v4
6868
6969 - name: Install Bun
70 uses: oven-sh/setup-bun@v2
70 uses: oven-sh/setup-bun@v2.0.2
7171
7272 - name: Use cached node_modules
73 uses: actions/cache@v4
73 uses: actions/cache@v4.3.0
7474 with:
7575 path: node_modules
7676 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -90,10 +90,10 @@ jobs:
9090 - uses: actions/checkout@v4
9191
9292 - name: Install Bun
93 uses: oven-sh/setup-bun@v2
93 uses: oven-sh/setup-bun@v2.0.2
9494
9595 - name: Use cached node_modules
96 uses: actions/cache@v4
96 uses: actions/cache@v4.3.0
9797 with:
9898 path: node_modules
9999 key: node-modules-${{ hashFiles('**/bun.lock') }}
.github/workflows/release.ymlmodified+2-2
Changes to .github/workflows/release.yml
@@ -16,10 +16,10 @@ jobs:
1616 fetch-depth: 0
1717
1818 - name: Install Bun
19 uses: oven-sh/setup-bun@v2.0.2
19 uses: oven-sh/setup-bun@v2
2020
2121 - name: Use cached node_modules
22 uses: actions/cache@v4.3.0
22 uses: actions/cache@v4
2323 with:
2424 path: node_modules
2525 key: node-modules-${{ hashFiles('**/bun.lock') }}
package.jsonmodified+6-2
Changes to package.json
@@ -57,7 +57,7 @@
5757 "lint:fix": "bunx --bun eslint . --fix",
5858 "changelog": "bunx logsmith --verbose",
5959 "changelog:generate": "bunx logsmith --output CHANGELOG.md",
60 "release": "bun run changelog:generate && bunx --bun bumpx prompt --recursive",
60 "release": "bunx --bun bumpx -r --push",
6161 "dev:docs": "bun bin/cli.ts dev",
6262 "build:docs": "bun build.ts",
6363 "preview:docs": "bun serve --port 3000 dist",
@@ -72,8 +72,9 @@
7272 "@stacksjs/ts-i18n": "^0.0.0",
7373 "bun-git-hooks": "^0.3.1",
7474 "bun-plugin-dtsx": "0.21.12",
75 "bun-plugin-stx": "^0.1.15",
75 "bun-plugin-stx": "0.1.16",
7676 "bunfig": "^0.15.0",
77 "ts-syntax-highlighter": "^0.1.0",
7778 "typescript": "^5.9.3"
7879 },
7980 "git-hooks": {
@@ -83,5 +84,8 @@
8384 }
8485 },
8586 "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
87 },
88 "overrides": {
89 "bun-plugin-stx": "0.1.16"
8690 }
8791}