Skip to content

Commit

Permalink
build: Ensure build:dev:watch commands work (#8553)
Browse files Browse the repository at this point in the history
Noticed the commands are a bit off, so fixed them!
  • Loading branch information
mydea committed Jul 17, 2023
1 parent 6444b34 commit 459c5d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-shims/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/replay-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 459c5d2

Please sign in to comment.