Skip to content

Commit

Permalink
chore: replace run-p with pnpm run (#5174)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa authored Feb 10, 2024
1 parent 15b2ad4 commit e4e93df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"build:node": "rollup -c",
"dev:client": "vite build src/client --watch",
"dev:node": "rollup -c --watch --watch.include 'src/node/**'",
"dev": "rimraf dist && run-p dev:node dev:client",
"dev": "rimraf dist && pnpm run --stream '/^dev:/'",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"typecheck": "tsc --noEmit",
"dev:client": "vite",
"dev": "rollup -c --watch --watch.include 'node/**'",
"dev:ui": "run-p dev dev:client",
"dev:ui": "pnpm run --stream '/^(dev|dev:client)$/'",
"test:run": "cypress run --component",
"test:open": "cypress open --component",
"prepublishOnly": "pnpm build"
Expand Down

0 comments on commit e4e93df

Please sign in to comment.