From 459c5d2c765575716e63ad043e087eefb558d6ae Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Mon, 17 Jul 2023 15:03:41 +0200 Subject: [PATCH] build: Ensure `build:dev:watch` commands work (#8553) Noticed the commands are a bit off, so fixed them! --- packages/browser/package.json | 2 +- packages/integration-shims/package.json | 2 +- packages/replay-worker/package.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/browser/package.json b/packages/browser/package.json index f4d458cd56c6..8a19c7880993 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -64,7 +64,7 @@ "build:types:core": "tsc -p tsconfig.types.json", "build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8", "build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch", - "build:dev:watch": "yarn build:watch", + "build:dev:watch": "run-p build:transpile:watch build:types:watch", "build:bundle:watch": "rollup -c rollup.bundle.config.js --watch", "build:transpile:watch": "rollup -c rollup.npm.config.js --watch", "build:types:watch": "tsc -p tsconfig.types.json --watch", diff --git a/packages/integration-shims/package.json b/packages/integration-shims/package.json index d1c107a217d1..27ad8574c5fe 100644 --- a/packages/integration-shims/package.json +++ b/packages/integration-shims/package.json @@ -24,7 +24,7 @@ "build:watch": "run-p build:transpile:watch build:types:watch", "build:dev:watch": "run-p build:watch", "build:transpile:watch": "yarn build:transpile --watch", - "build:types:watch": "yarn build:types --watch", + "build:types:watch": "tsc -p tsconfig.types.json --watch", "clean": "rimraf build", "fix": "run-s fix:eslint fix:prettier", "fix:eslint": "eslint . --format stylish --fix", diff --git a/packages/replay-worker/package.json b/packages/replay-worker/package.json index 137a5e58c96a..2d1623dd8d20 100644 --- a/packages/replay-worker/package.json +++ b/packages/replay-worker/package.json @@ -22,9 +22,9 @@ "build:types:downlevel": "yarn downlevel-dts build/npm/types build/npm/types-ts3.8 --to ts3.8", "build:dev": "yarn build", "build:watch": "run-p build:transpile:watch build:types:watch", - "build:dev:watch": "run-p build:watch", + "build:dev:watch": "yarn build:watch", "build:transpile:watch": "yarn build:transpile --watch", - "build:types:watch": "yarn build:types --watch", + "build:types:watch": "tsc -p tsconfig.types.json --watch", "clean": "rimraf build", "fix": "run-s fix:eslint fix:prettier", "fix:eslint": "eslint . --format stylish --fix",