Skip to content

Commit 90788c8

Browse files
authored
Merge pull request #1 from contractual-dev/fix_build_watch
fix: build step should not contain watch
2 parents 0fdcc27 + e3ce619 commit 90788c8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

packages/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
},
3838
"scripts": {
3939
"prebuild": "yarn rimraf dist",
40-
"build": "yarn tsc -p tsconfig.build.json --watch",
40+
"build": "yarn tsc -p tsconfig.build.json",
41+
"build:watch": "yarn tsc -p tsconfig.build.json --watch",
4142
"tester": "jest --coverage --verbose",
4243
"lint": "yarn eslint '{src,test}/**/*.ts'"
4344
},

packages/generators/fixtures/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
},
4343
"scripts": {
4444
"prebuild": "yarn rimraf dist",
45-
"build": "yarn tsc -p tsconfig.build.json --watch",
45+
"build": "yarn tsc -p tsconfig.build.json",
46+
"build:watch": "yarn tsc -p tsconfig.build.json --watch",
4647
"tester": "jest --coverage --verbose",
4748
"lint": "yarn eslint '{src,test}/**/*.ts'"
4849
},

packages/generators/openapi/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
},
4343
"scripts": {
4444
"prebuild": "yarn rimraf dist",
45-
"build": "yarn tsc -p tsconfig.build.json --watch",
45+
"build": "yarn tsc -p tsconfig.build.json",
46+
"build:watch": "yarn tsc -p tsconfig.build.json --watch",
4647
"tester": "jest --coverage --verbose",
4748
"lint": "yarn eslint '{src,test}/**/*.ts'"
4849
},

0 commit comments

Comments
 (0)