Skip to content

Commit 459c5d2

Browse files
authored
build: Ensure build:dev:watch commands work (#8553)
Noticed the commands are a bit off, so fixed them!
1 parent 6444b34 commit 459c5d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"build:types:core": "tsc -p tsconfig.types.json",
6565
"build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
6666
"build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch",
67-
"build:dev:watch": "yarn build:watch",
67+
"build:dev:watch": "run-p build:transpile:watch build:types:watch",
6868
"build:bundle:watch": "rollup -c rollup.bundle.config.js --watch",
6969
"build:transpile:watch": "rollup -c rollup.npm.config.js --watch",
7070
"build:types:watch": "tsc -p tsconfig.types.json --watch",

packages/integration-shims/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"build:watch": "run-p build:transpile:watch build:types:watch",
2525
"build:dev:watch": "run-p build:watch",
2626
"build:transpile:watch": "yarn build:transpile --watch",
27-
"build:types:watch": "yarn build:types --watch",
27+
"build:types:watch": "tsc -p tsconfig.types.json --watch",
2828
"clean": "rimraf build",
2929
"fix": "run-s fix:eslint fix:prettier",
3030
"fix:eslint": "eslint . --format stylish --fix",

packages/replay-worker/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8",
2323
"build:dev": "yarn build",
2424
"build:watch": "run-p build:transpile:watch build:types:watch",
25-
"build:dev:watch": "run-p build:watch",
25+
"build:dev:watch": "yarn build:watch",
2626
"build:transpile:watch": "yarn build:transpile --watch",
27-
"build:types:watch": "yarn build:types --watch",
27+
"build:types:watch": "tsc -p tsconfig.types.json --watch",
2828
"clean": "rimraf build",
2929
"fix": "run-s fix:eslint fix:prettier",
3030
"fix:eslint": "eslint . --format stylish --fix",

0 commit comments

Comments
 (0)