Skip to content

Commit

Permalink
chore(build): use --preserveWatchOutput in dev:types scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed May 24, 2024
1 parent 91cf3ab commit 72b9fb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "npm run clean && tsup-node && tsc -p . --emitDeclarationOnly",
"dev": "concurrently npm:dev:*",
"dev:build": "tsup-node --watch --sourcemap",
"dev:types": "tsc -p . --emitDeclarationOnly --watch"
"dev:types": "tsc -p . --emitDeclarationOnly --watch --preserveWatchOutput"
},
"dependencies": {
"@cush/relative": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "npm run clean && tsup-node && tsc -p . --emitDeclarationOnly",
"dev": "concurrently npm:dev:*",
"dev:build": "tsup-node --watch --sourcemap",
"dev:types": "tsc -p . --emitDeclarationOnly --watch"
"dev:types": "tsc -p . --emitDeclarationOnly --watch --preserveWatchOutput"
},
"dependencies": {
"@ampproject/remapping": "^1.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/vm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "npm run clean && tsup-node && tsc -p . --emitDeclarationOnly",
"dev": "concurrently npm:dev:*",
"dev:build": "tsup-node --watch --sourcemap",
"dev:types": "tsc -p . --emitDeclarationOnly --watch"
"dev:types": "tsc -p . --emitDeclarationOnly --watch --preserveWatchOutput"
},
"dependencies": {
"@saus/utils": "workspace:*",
Expand Down

0 comments on commit 72b9fb8

Please sign in to comment.