also looking at this
chore(deps): update all non-major dependencies
#185
10 files
+301
-78
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.
| @@ -167,7 +167,31 @@ jobs: | ||
| 167 | 167 | run: | |
| 168 | 168 | # macOS: Let Launchpad handle all dependencies |
| 169 | 169 | echo "📦 macOS build will use Launchpad for all dependencies" |
| 170 | echo "🚀 No system package installation needed - Launchpad will provide everything" | |
| 170 | echo "🚀 Installing PHP dependencies via Launchpad first..." | |
| 171 | ||
| 172 | # Pre-install dependencies to ensure they're available | |
| 173 | echo "🔧 Pre-installing dependencies via Launchpad..." | |
| 174 | bun run launchpad install php --deps-only || echo "⚠️ Dependency installation had issues, continuing anyway" | |
| 175 | ||
| 176 | # Debug: Check if ICU libraries are available | |
| 177 | echo "🔍 Checking for ICU libraries..." | |
| 178 | if [ -d "$HOME/.local/unicode.org" ]; then | |
| 179 | echo "✅ ICU libraries found at: $HOME/.local/unicode.org" | |
| 180 | ls -la "$HOME/.local/unicode.org/" | |
| 181 | if [ -f "$HOME/.local/unicode.org"/*/lib/pkgconfig/icu-uc.pc ]; then | |
| 182 | echo "✅ ICU pkgconfig files found" | |
| 183 | find "$HOME/.local/unicode.org" -name "*.pc" -type f | head -5 | |
| 184 | else | |
| 185 | echo "❌ ICU pkgconfig files not found" | |
| 186 | fi | |
| 187 | else | |
| 188 | echo "❌ ICU libraries not found" | |
| 189 | fi | |
| 190 | ||
| 191 | # Debug: Check PATH and PKG_CONFIG_PATH | |
| 192 | echo "🔍 Environment check:" | |
| 193 | echo "PATH includes unicode.org: $(echo $PATH | grep -o unicode.org || echo 'NO')" | |
| 194 | echo "PKG_CONFIG_PATH: ${PKG_CONFIG_PATH:-'NOT SET'}" | |
| 171 | 195 | |
| 172 | 196 | - name: Install build dependencies (Windows) |
| 173 | 197 | if: matrix.platform == 'win32' |
| @@ -721,7 +745,7 @@ jobs: | ||
| 721 | 745 | echo " - Manifest file size: $(stat -c%s manifest.json 2>/dev/null || stat -f%z manifest.json) bytes" |
| 722 | 746 | |
| 723 | 747 | - name: Create GitHub Release |
| 724 | uses: softprops/action-gh-release@v1 | |
| 748 | uses: softprops/action-gh-release@v2.3.3 | |
| 725 | 749 | with: |
| 726 | 750 | tag_name: binaries-${{ github.run_number }} |
| 727 | 751 | name: PHP Binaries - Build ${{ github.run_number }} |
| @@ -17,43 +17,36 @@ | ||
| 17 | 17 | "keywords": ["homebrew", "pkgx", "bun", "package"], |
| 18 | 18 | "scripts": { |
| 19 | 19 | "build": "for dir in packages/*; do if [ -f \"$dir/package.json\" ]; then echo \"Building $dir\" && bun run --cwd $dir build; fi; done", |
| 20 | "fresh": "bunx rimraf node_modules/ bun.lock && bun i", | |
| 21 | "test": "bun test", | |
| 22 | 20 | "lint": "bunx --bun eslint .", |
| 23 | 21 | "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", | |
| 22 | "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", | |
| 25 | "test": "bun test", | |
| 28 | 26 | "dev:docs": "bun vitepress dev docs", |
| 29 | 27 | "build:docs": "bun vitepress build docs", |
| 30 | 28 | "preview:docs": "bun vitepress preview docs", |
| 31 | 29 | "typecheck": "bun --bun tsc --noEmit" |
| 32 | 30 | }, |
| 33 | 31 | "devDependencies": { |
| 34 | "@stacksjs/bumpx": "^0.1.84", | |
| 35 | 32 | "@stacksjs/docs": "^0.70.23", |
| 36 | 33 | "@stacksjs/eslint-config": "^4.14.0-beta.3", |
| 37 | "@stacksjs/gitlint": "^0.1.5", | |
| 38 | 34 | "@stacksjs/launchpad": "workspace:*", |
| 39 | "@stacksjs/logsmith": "^0.1.18", | |
| 40 | "@types/bun": "^1.2.22", | |
| 41 | "buddy-bot": "^0.9.7", | |
| 42 | "bun-git-hooks": "^0.2.19", | |
| 35 | "@types/bun": "^1.2.20", | |
| 36 | "buddy-bot": "^0.8.8", | |
| 37 | "bumpp": "^10.2.3", | |
| 43 | 38 | "bun-plugin-dtsx": "0.21.12", |
| 39 | "changelogen": "^0.6.2", | |
| 40 | "lint-staged": "^15.5.2", | |
| 41 | "simple-git-hooks": "^2.13.1", | |
| 44 | 42 | "typescript": "^5.9.2" |
| 45 | 43 | }, |
| 46 | 44 | "overrides": { |
| 47 | 45 | "@stacksjs/dtsx": "0.9.5", |
| 48 | 46 | "unconfig": "0.3.10" |
| 49 | 47 | }, |
| 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" | |
| 48 | "lint-staged": { | |
| 49 | "*.{js,ts}": "bunx --bun eslint . --fix" | |
| 57 | 50 | }, |
| 58 | 51 | "workspaces": [ |
| 59 | 52 | "packages/*" |
| @@ -2,7 +2,7 @@ | ||
| 2 | 2 | "name": "@stacksjs/launchpad", |
| 3 | 3 | "type": "module", |
| 4 | 4 | "version": "0.6.4", |
| 5 | "packageManager": "bun@1.2.21", | |
| 5 | "packageManager": "bun", | |
| 6 | 6 | "description": "Like Homebrew, but faster.", |
| 7 | 7 | "author": "Chris Breuer <chris@stacksjs.org>", |
| 8 | 8 | "license": "MIT", |
| @@ -64,7 +64,7 @@ | ||
| 64 | 64 | "typecheck": "bun --bun tsc --noEmit --skipLibCheck" |
| 65 | 65 | }, |
| 66 | 66 | "dependencies": { |
| 67 | "bunfig": "^0.15.0", | |
| 67 | "bunfig": "^0.11.1", | |
| 68 | 68 | "cac": "^6.7.14", |
| 69 | 69 | "ts-pkgx": "^0.4.76" |
| 70 | 70 | }, |