From 7d77ee8792a441aed4ced4978c29b0ae1f6e2287 Mon Sep 17 00:00:00 2001 From: Shinyaigeek Date: Sun, 28 Jun 2026 16:26:00 +0900 Subject: [PATCH] chore: centralize rimraf version with pnpm catalog Add rimraf (^5.0.7) to the shared pnpm catalog and reference it via the catalog: protocol from react-ui, openui-cli, and browser-bundle. Following the existing convention, only packages/* use catalog:. Resolved version is unchanged (5.0.10). Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/browser-bundle/package.json | 2 +- packages/openui-cli/package.json | 2 +- packages/react-ui/package.json | 2 +- pnpm-lock.yaml | 9 ++++++--- pnpm-workspace.yaml | 1 + 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/packages/browser-bundle/package.json b/packages/browser-bundle/package.json index a25a24bc7..9bb848c52 100644 --- a/packages/browser-bundle/package.json +++ b/packages/browser-bundle/package.json @@ -57,6 +57,6 @@ }, "devDependencies": { "esbuild": "^0.25.12", - "rimraf": "^5.0.7" + "rimraf": "catalog:" } } diff --git a/packages/openui-cli/package.json b/packages/openui-cli/package.json index eb35fd1a3..e6d031582 100644 --- a/packages/openui-cli/package.json +++ b/packages/openui-cli/package.json @@ -23,7 +23,7 @@ }, "devDependencies": { "@types/node": "catalog:", - "rimraf": "^5.0.7" + "rimraf": "catalog:" }, "keywords": [ "openui", diff --git a/packages/react-ui/package.json b/packages/react-ui/package.json index 796c39044..d6f2eaf7f 100644 --- a/packages/react-ui/package.json +++ b/packages/react-ui/package.json @@ -170,7 +170,7 @@ "storybook": "^8.5.3", "tailwindcss": "^3", "tsx": "^4.19.2", - "rimraf": "^5.0.7", + "rimraf": "catalog:", "vite": "^6.4.2", "vitest": "^4.0.18", "webpack": "^5.104.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 25d6d61b6..75b95b7ba 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -51,6 +51,9 @@ catalogs: react-dom: specifier: ^18.0.0 || ^19.0.0 version: 19.2.4 + rimraf: + specifier: ^5.0.7 + version: 5.0.10 typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1459,7 +1462,7 @@ importers: specifier: ^0.25.12 version: 0.25.12 rimraf: - specifier: ^5.0.7 + specifier: 'catalog:' version: 5.0.10 packages/lang-core: @@ -1494,7 +1497,7 @@ importers: specifier: 'catalog:' version: 22.19.19 rimraf: - specifier: ^5.0.7 + specifier: 'catalog:' version: 5.0.10 packages/react-email: @@ -1777,7 +1780,7 @@ importers: specifier: ^15.8.1 version: 15.8.1 rimraf: - specifier: ^5.0.7 + specifier: 'catalog:' version: 5.0.10 sass: specifier: ^1.83.4 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 58e5a2736..7c6e351b1 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -22,6 +22,7 @@ catalog: jsdom: "^26.1.0" react: "^18.3.1 || ^19.0.0" react-dom: "^18.0.0 || ^19.0.0" + rimraf: "^5.0.7" typescript: "^5.9.3" zod: "^3.25.0 || ^4.0.0" zustand: "^4.5.5"