ReviewOS

also looking at this

stacks/bunpress

chore(deps): update all non-major dependencies

#20
Closed chrisbbreuer wants to merge buddy-bot/update-non-major-updates-1756836309803 into main
5 files +34 -25
.github/workflows/buddy-bot.ymlmodified+6-6
Changes to .github/workflows/buddy-bot.yml
@@ -126,11 +126,11 @@ jobs:
126126 persist-credentials: true
127127
128128 - name: Setup Bun
129 uses: oven-sh/setup-bun@v2
129 uses: oven-sh/setup-bun@v2.0.2
130130
131131 - name: Setup PHP and Composer (if needed)
132132 if: ${{ hashFiles('composer.json') != '' }}
133 uses: shivammathur/setup-php@v2
133 uses: shivammathur/setup-php@2.35.4
134134 with:
135135 php-version: '8.4'
136136 tools: composer
@@ -163,7 +163,7 @@ jobs:
163163 persist-credentials: true
164164
165165 - name: Setup Bun
166 uses: oven-sh/setup-bun@v2
166 uses: oven-sh/setup-bun@v2.0.2
167167
168168 - name: Install dependencies
169169 run: bun install
@@ -244,11 +244,11 @@ jobs:
244244 persist-credentials: true
245245
246246 - name: Setup Bun
247 uses: oven-sh/setup-bun@v2
247 uses: oven-sh/setup-bun@v2.0.2
248248
249249 - name: Setup PHP and Composer (if needed)
250250 if: ${{ hashFiles('composer.json') != '' }}
251 uses: shivammathur/setup-php@v2
251 uses: shivammathur/setup-php@2.35.4
252252 with:
253253 php-version: '8.4'
254254 tools: composer
@@ -351,7 +351,7 @@ jobs:
351351 token: ${{ secrets.GITHUB_TOKEN }}
352352
353353 - name: Setup Bun
354 uses: oven-sh/setup-bun@v2
354 uses: oven-sh/setup-bun@v2.0.2
355355
356356 - name: Install dependencies
357357 run: bun install
.github/workflows/ci.ymlmodified+4-4
Changes to .github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
2424 uses: oven-sh/setup-bun@v2
2525
2626 - name: Use cached node_modules
27 uses: actions/cache@v4
27 uses: actions/cache@v4.2.4
2828 with:
2929 path: node_modules
3030 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -47,7 +47,7 @@ jobs:
4747 uses: oven-sh/setup-bun@v2
4848
4949 - name: Use cached node_modules
50 uses: actions/cache@v4
50 uses: actions/cache@v4.2.4
5151 with:
5252 path: node_modules
5353 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -70,7 +70,7 @@ jobs:
7070 uses: oven-sh/setup-bun@v2
7171
7272 - name: Use cached node_modules
73 uses: actions/cache@v4
73 uses: actions/cache@v4.2.4
7474 with:
7575 path: node_modules
7676 key: node-modules-${{ hashFiles('**/bun.lock') }}
@@ -93,7 +93,7 @@ jobs:
9393 uses: oven-sh/setup-bun@v2
9494
9595 - name: Use cached node_modules
96 uses: actions/cache@v4
96 uses: actions/cache@v4.2.4
9797 with:
9898 path: node_modules
9999 key: node-modules-${{ hashFiles('**/bun.lock') }}
.github/workflows/release.ymlmodified+1-1
Changes to .github/workflows/release.yml
@@ -40,7 +40,7 @@ jobs:
4040 GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
4141
4242 - name: Attach Binaries
43 uses: softprops/action-gh-release@v2
43 uses: softprops/action-gh-release@v2.3.3
4444 with:
4545 files: |
4646 bin/bunpress-linux-x64
package.jsonmodified+22-13
Changes to package.json
@@ -47,7 +47,9 @@
4747 "compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/bunpress-darwin-arm64",
4848 "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
4949 "prepublishOnly": "bun --bun run build && bun run compile:all",
50 "test": "bun test",
50 "test": "bun test --reporter=verbose",
51 "test:quick": "bun test --timeout=10000",
52 "test:full": "bun test --timeout=60000 --no-bail",
5153 "lint": "bunx --bun eslint .",
5254 "lint:fix": "bunx --bun eslint . --fix",
5355 "changelog": "bunx logsmith --verbose",
@@ -60,25 +62,32 @@
6062 "typecheck": "bun --bun tsc --noEmit"
6163 },
6264 "dependencies": {
63 "@unocss/config": "^66.1.0-beta.12",
64 "@unocss/core": "^66.1.0-beta.12",
65 "@unocss/preset-wind3": "^66.1.0-beta.12",
65 "@markedjs/html-differ": "^5.0.2",
66 "@unocss/config": "^66.5.1",
67 "@unocss/core": "^66.5.1",
68 "@unocss/preset-wind3": "^66.5.1",
6669 "bun-plugin-unocss": "^0.1.3",
6770 "gray-matter": "^4.0.3",
68 "marked": "^15.0.11"
71 "highlight.js": "^11.11.1",
72 "marked": "^15.0.11",
73 "marked-alert": "^2.1.2",
74 "marked-emoji": "^2.0.1",
75 "marked-highlight": "^2.2.2",
76 "shiki": "^3.12.2"
6977 },
7078 "devDependencies": {
71 "@stacksjs/bumpx": "^0.1.17",
72 "@stacksjs/eslint-config": "^4.10.2-beta.3",
79 "@stacksjs/bumpx": "^0.1.83",
80 "@stacksjs/eslint-config": "^4.14.0-beta.3",
7381 "@stacksjs/gitlint": "^0.1.5",
74 "@stacksjs/logsmith": "^0.1.8",
75 "@types/bun": "^1.2.10",
82 "@stacksjs/logsmith": "^0.1.18",
83 "@stacksjs/ts-i18n": "^0.0.0",
84 "@types/bun": "^1.2.21",
7685 "@types/marked": "^6.0.0",
77 "buddy-bot": "^0.8.9",
86 "buddy-bot": "^0.9.5",
7887 "bun-git-hooks": "^0.2.19",
79 "bun-plugin-dtsx": "^0.21.9",
80 "bunfig": "^0.8.3",
81 "typescript": "^5.8.3"
88 "bun-plugin-dtsx": "^0.21.12",
89 "bunfig": "^0.15.0",
90 "typescript": "^5.9.2"
8291 },
8392 "overrides": {
8493 "unconfig": "0.3.10"
pkgx.yamlmodified+1-1
Changes to pkgx.yaml
@@ -1,2 +1,2 @@
11dependencies:
2 bun.sh: ^1.2.10
2 bun.sh: ^1.2.20