Skip to content

Commit f66a4a4

Browse files
committed
Renamed build:watch task to watch
1 parent 13cdcaa commit f66a4a4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

example/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"scripts": {
1414
"build": "",
15-
"build:watch": "",
15+
"watch": "",
1616
"test": ""
1717
}
1818
}

example/express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"scripts": {
1515
"build": "",
16-
"build:watch": "",
16+
"watch": "",
1717
"test": ""
1818
}
1919
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"scripts": {
1818
"clean": "rimraf packages/*/dist examples/*/dist",
1919
"build": "npm run build --workspaces",
20-
"build:watch": "npm run build:watch --workspaces",
20+
"watch": "npm run watch --workspaces",
2121
"lint": "eslint . --ext .ts",
2222
"lint:fix": "eslint . --ext .ts --fix",
2323
"test": "npm test --workspaces"

packages/angularjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"scripts": {
3535
"build": "tsc -p tsconfig.json",
36-
"build:watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
36+
"watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
3737
"test": ""
3838
},
3939
"sideEffects": false,

packages/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"scripts": {
3737
"build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --minify --sourcemap --target=es2020 --format=esm --outfile=dist/index.min.js",
38-
"build:watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
38+
"watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
3939
"test": ""
4040
},
4141
"sideEffects": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"scripts": {
4343
"build": "tsc -p tsconfig.json",
44-
"build:watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
44+
"watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
4545
"test": "jest"
4646
},
4747
"sideEffects": false,

packages/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"scripts": {
4343
"build": "tsc -p tsconfig.json",
44-
"build:watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
44+
"watch": "tsc -p tsconfig.json -w --preserveWatchOutput",
4545
"test": "jest"
4646
},
4747
"sideEffects": [

0 commit comments

Comments
 (0)