Skip to content

Commit 29fb2a8

Browse files
authored
fix(build): Add missing build:types:watch instances (#4754)
A few of the `build:types:watch` instances added in #4724 got clobbered in a subsequent rebase. This adds the missing ones back in.
1 parent 2b5be64 commit 29fb2a8

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

packages/core/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"build:dev:watch": "run-s build:watch",
3535
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",
3636
"build:esm:watch": "tsc -p tsconfig.esm.json --watch",
37+
"build:types:watch": "tsc -p tsconfig.types.json --watch",
3738
"build:npm": "npm pack",
3839
"circularDepCheck": "madge --circular src/index.ts",
3940
"clean": "rimraf dist esm coverage",

packages/nextjs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"build:dev:watch": "run-s build:watch",
5555
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",
5656
"build:esm:watch": "tsc -p tsconfig.esm.json --watch",
57+
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5758
"build:npm": "npm pack",
5859
"circularDepCheck": "madge --circular src/index.client.ts && madge --circular --exclude 'config/types\\.ts' src/index.server.ts # see https://github.com/pahen/madge/issues/306",
5960
"clean": "rimraf dist esm coverage *.js *.js.map *.d.ts",

packages/react/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"build:dev:watch": "run-s build:watch",
6262
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",
6363
"build:esm:watch": "tsc -p tsconfig.esm.json --watch",
64+
"build:types:watch": "tsc -p tsconfig.types.json --watch",
6465
"build:npm": "npm pack",
6566
"circularDepCheck": "madge --circular src/index.ts",
6667
"clean": "rimraf dist esm build coverage",

packages/serverless/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"build:dev:watch": "run-s build:watch",
5252
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",
5353
"build:esm:watch": "tsc -p tsconfig.esm.json --watch",
54+
"build:types:watch": "tsc -p tsconfig.types.json --watch",
5455
"build:npm": "npm pack",
5556
"circularDepCheck": "madge --circular src/index.ts",
5657
"clean": "rimraf dist esm build dist-awslambda-layer coverage",

0 commit comments

Comments
 (0)