Skip to content

Commit

Permalink
chore: fix --watch.include option of dev scripts (#4702)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Dec 8, 2023
1 parent 7006bb3 commit 4fb7482
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 @@ -44,7 +44,7 @@
"build:client": "vite build src/client",
"build:node": "rollup -c",
"dev:client": "vite build src/client --watch",
"dev:node": "rollup -c --watch --watch.include src/node/index.ts",
"dev:node": "rollup -c --watch --watch.include 'src/node/**'",
"dev": "rimraf dist && run-p dev:node dev:client",
"prepublishOnly": "pnpm build"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"build:node": "rollup -c",
"typecheck": "tsc --noEmit",
"dev:client": "vite",
"dev": "rollup -c --watch --watch.include=node",
"dev": "rollup -c --watch --watch.include 'node/**'",
"dev:ui": "run-p dev dev:client",
"test:run": "cypress run --component",
"test:open": "cypress open --component",
Expand Down

0 comments on commit 4fb7482

Please sign in to comment.