From 191143b3121837e6752b68fc1adcb3afccbce039 Mon Sep 17 00:00:00 2001 From: Christian Pillsbury Date: Wed, 13 Aug 2025 11:31:48 -0700 Subject: [PATCH] fix(workspace): correct build:libs command to use explicit package names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace glob patterns with explicit workspace package names in build:libs script. npm workspace commands don't support glob patterns directly in --workspace flags, causing build failures. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index e244b32c..0f76bc48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4245,6 +4245,7 @@ }, "devDependencies": { "@types/react": "^18.0.0", + "esbuild-css-modules-plugin": "^3.1.5", "react": "^18.0.0", "typescript": "^5.3.0" }, @@ -4294,7 +4295,6 @@ }, "devDependencies": { "@types/react": "^18.0.0", - "esbuild-css-modules-plugin": "^3.1.5", "react": "^18.0.0", "typescript": "^5.3.0" }, diff --git a/package.json b/package.json index 15cd0790..b1704651 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ ], "scripts": { "build": "npm run build --workspaces --if-present", - "build:libs": "npm run build --workspace=packages/core/* --workspace=packages/html/* --workspace=packages/react/* --workspace=packages/react-native/*", + "build:libs": "npm run build --workspaces --if-present --workspace=@vjs-10/icons --workspace=@vjs-10/media --workspace=@vjs-10/media-store --workspace=@vjs-10/playback-engine --workspace=@vjs-10/html --workspace=@vjs-10/html-icons --workspace=@vjs-10/html-media-elements --workspace=@vjs-10/html-media-store --workspace=@vjs-10/react --workspace=@vjs-10/react-icons --workspace=@vjs-10/react-media-elements --workspace=@vjs-10/react-media-store --workspace=@vjs-10/react-native --workspace=@vjs-10/react-native-icons --workspace=@vjs-10/react-native-media-elements", "test": "npm run test --workspaces --if-present", "lint": "npm run lint --workspaces --if-present", "typecheck": "npm run typecheck --workspaces --if-present",