ReviewOS

also looking at this

pantry-pm/pantry

chore(deps): update all non-major dependencies

#182
Closed chrisbbreuer wants to merge buddy-bot/update-non-major-updates-1756513302491 into main
10 files +465 -910

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/precompile-php.ymlmodified+1-1
Changes to .github/workflows/precompile-php.yml
@@ -665,7 +665,7 @@ jobs:
665665 echo " - Manifest file size: $(stat -c%s manifest.json 2>/dev/null || stat -f%z manifest.json) bytes"
666666
667667 - name: Create GitHub Release
668 uses: softprops/action-gh-release@v2.3.3
668 uses: softprops/action-gh-release@v1
669669 with:
670670 tag_name: binaries-${{ github.run_number }}
671671 name: PHP Binaries - Build ${{ github.run_number }}
package.jsonmodified+18-11
Changes to package.json
@@ -17,36 +17,43 @@
1717 "keywords": ["homebrew", "pkgx", "bun", "package"],
1818 "scripts": {
1919 "build": "for dir in packages/*; do if [ -f \"$dir/package.json\" ]; then echo \"Building $dir\" && bun run --cwd $dir build; fi; done",
20 "lint": "bunx --bun eslint .",
21 "lint:fix": "bunx --bun eslint . --fix",
2220 "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
23 "changelog": "bunx --bun changelogen --output CHANGELOG.md",
24 "release": "bun run changelog && bunx --bun bumpp -r --all",
2521 "test": "bun test",
22 "lint": "bunx --bun eslint .",
23 "lint:fix": "bunx --bun eslint . --fix",
24 "changelog": "bunx logsmith --verbose",
25 "changelog:generate": "bunx logsmith --output CHANGELOG.md",
26 "release": "bun run changelog:generate && bunx bumpx prompt --recursive",
27 "postinstall": "bunx git-hooks",
2628 "dev:docs": "bun vitepress dev docs",
2729 "build:docs": "bun vitepress build docs",
2830 "preview:docs": "bun vitepress preview docs",
2931 "typecheck": "bun --bun tsc --noEmit"
3032 },
3133 "devDependencies": {
34 "@stacksjs/bumpx": "^0.1.78",
3235 "@stacksjs/docs": "^0.70.23",
3336 "@stacksjs/eslint-config": "^4.14.0-beta.3",
37 "@stacksjs/gitlint": "^0.1.5",
3438 "@stacksjs/launchpad": "workspace:*",
39 "@stacksjs/logsmith": "^0.1.18",
3540 "@types/bun": "^1.2.21",
36 "buddy-bot": "^0.8.8",
37 "bumpp": "^10.2.3",
41 "buddy-bot": "^0.9.5",
42 "bun-git-hooks": "^0.2.19",
3843 "bun-plugin-dtsx": "0.21.12",
39 "changelogen": "^0.6.2",
40 "lint-staged": "^15.5.2",
41 "simple-git-hooks": "^2.13.1",
4244 "typescript": "^5.9.2"
4345 },
4446 "overrides": {
4547 "@stacksjs/dtsx": "0.9.5",
4648 "unconfig": "0.3.10"
4749 },
48 "lint-staged": {
49 "*.{js,ts}": "bunx --bun eslint . --fix"
50 "git-hooks": {
51 "pre-commit": {
52 "staged-lint": {
53 "*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix"
54 }
55 },
56 "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
5057 },
5158 "workspaces": [
5259 "packages/*"
packages/launchpad/package.jsonmodified+2-2
Changes to packages/launchpad/package.json
@@ -2,7 +2,7 @@
22 "name": "@stacksjs/launchpad",
33 "type": "module",
44 "version": "0.6.4",
5 "packageManager": "bun",
5 "packageManager": "bun@1.2.21",
66 "description": "Like Homebrew, but faster.",
77 "author": "Chris Breuer <chris@stacksjs.org>",
88 "license": "MIT",
@@ -64,7 +64,7 @@
6464 "typecheck": "bun --bun tsc --noEmit --skipLibCheck"
6565 },
6666 "dependencies": {
67 "bunfig": "^0.11.1",
67 "bunfig": "^0.15.0",
6868 "cac": "^6.7.14",
6969 "ts-pkgx": "^0.4.64"
7070 },