From 5d38a1a46428d0f5ae25b7baeca0c6f89da0f737 Mon Sep 17 00:00:00 2001 From: Shinyaigeek Date: Tue, 16 Jun 2026 16:11:01 +0900 Subject: [PATCH] chore: centralize esbuild version with pnpm catalog esbuild was pinned independently in two internal packages (openui-cli at ^0.25.10, browser-bundle at ^0.25.12). Move it into the shared pnpm catalog at ^0.25.12 and reference it via catalog: so both packages stay aligned and bump in one place. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/browser-bundle/package.json | 2 +- packages/openui-cli/package.json | 2 +- pnpm-lock.yaml | 7 +++++-- pnpm-workspace.yaml | 1 + 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/browser-bundle/package.json b/packages/browser-bundle/package.json index a25a24bc7..49d72ae97 100644 --- a/packages/browser-bundle/package.json +++ b/packages/browser-bundle/package.json @@ -56,7 +56,7 @@ "react-dom": "^19.0.0" }, "devDependencies": { - "esbuild": "^0.25.12", + "esbuild": "catalog:", "rimraf": "^5.0.7" } } diff --git a/packages/openui-cli/package.json b/packages/openui-cli/package.json index 82cd60bbb..ac3ed7a8c 100644 --- a/packages/openui-cli/package.json +++ b/packages/openui-cli/package.json @@ -53,6 +53,6 @@ "@inquirer/core": "^11.1.5", "@inquirer/prompts": "^8.3.0", "commander": "^14.0.3", - "esbuild": "^0.25.10" + "esbuild": "catalog:" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4ca5a1152..041564b53 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,6 +15,9 @@ catalogs: '@typescript-eslint/eslint-plugin': specifier: ^8.56.1 version: 8.59.4 + esbuild: + specifier: ^0.25.12 + version: 0.25.12 eslint: specifier: ^9.0.0 version: 9.29.0 @@ -1343,7 +1346,7 @@ importers: version: 19.2.4(react@19.2.4) devDependencies: esbuild: - specifier: ^0.25.12 + specifier: 'catalog:' version: 0.25.12 rimraf: specifier: ^5.0.7 @@ -1374,7 +1377,7 @@ importers: specifier: ^14.0.3 version: 14.0.3 esbuild: - specifier: ^0.25.10 + specifier: 'catalog:' version: 0.25.12 devDependencies: '@types/node': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 641c24bb1..cd1a83996 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -10,6 +10,7 @@ catalog: "@types/node": "^22.15.32" "@types/react": ">=19.0.0" "@typescript-eslint/eslint-plugin": "^8.56.1" + esbuild: "^0.25.12" eslint: "^9.0.0" eslint-config-prettier: "^10.1.8" eslint-plugin-prettier: "^5.5.5"