chore(react-ui): replace concurrently with pnpm regex script runner#642
Open
Shinyaigeek wants to merge 1 commit into
Open
chore(react-ui): replace concurrently with pnpm regex script runner#642Shinyaigeek wants to merge 1 commit into
Shinyaigeek wants to merge 1 commit into
Conversation
Drop the `concurrently` devDependency from `@openuidev/react-ui` and run the watch tasks through pnpm's built-in regex script runner instead. The single `watch` script is split into `watch:build`, `watch:tsc`, and `watch:scss`, and `watch` now runs them all in parallel via `pnpm run --parallel "/^watch:/"`. The underlying commands are unchanged. See pnpm's "Running multiple scripts" docs: https://pnpm.io/cli/run#running-multiple-scripts Removes `concurrently@9.2.0` (and its now-unused `rxjs@7.8.2`) from the lockfile. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
66cd619 to
d1cc912
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Removes the
concurrentlydevDependency from@openuidev/react-uiand runs the watch tasks through pnpm's built-in regex script runner instead.Changes
The single
watchscript is split into three named scripts, andwatchruns them all in parallel:Per the pnpm docs,
pnpm run "/<regex>/"runs every script matching the pattern, and--parallelruns them concurrently with prefixed streaming output — exactly whatconcurrentlywas doing.The underlying watch commands are byte-for-byte identical to before; only the orchestration mechanism changed.
concurrently@9.2.0(and its now-unused transitiverxjs@7.8.2) is dropped from the lockfile.Verification
pnpm run watchresolves the regex to all threewatch:*scripts and launches them in parallel (verified locally).pnpm install --frozen-lockfilepasses against the updated lockfile.🤖 Generated with Claude Code