Skip to content

Commit

Permalink
chore: fix rollup watch mode (#2424)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Dec 5, 2022
1 parent 7d4e3ed commit 1155409
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/coverage-c8/package.json
Expand Up @@ -38,7 +38,7 @@
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch --watch.include=src",
"dev": "rollup -c --watch --watch.include 'src/**'",
"prepublishOnly": "pnpm build"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/coverage-istanbul/package.json
Expand Up @@ -38,7 +38,7 @@
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch --watch.include=src",
"dev": "rollup -c --watch --watch.include 'src/**'",
"prepublishOnly": "pnpm build"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-worker/package.json
Expand Up @@ -29,7 +29,7 @@
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch --watch.include=src",
"dev": "rollup -c --watch --watch.include 'src/**'",
"prepublishOnly": "pnpm build",
"typecheck": "tsc --noEmit"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ws-client/package.json
Expand Up @@ -34,7 +34,7 @@
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch --watch.include=src",
"dev": "rollup -c --watch --watch.include 'src/**'",
"prepublishOnly": "pnpm build",
"typecheck": "tsc --noEmit"
},
Expand Down

0 comments on commit 1155409

Please sign in to comment.