fix(nx): add outputPath in schema.json for web and node build builders. (#1959)

Related: #1945
This commit is contained in:
Jack Hsu 2019-10-17 12:46:34 -04:00 committed by GitHub
parent 3f62cc67bd
commit 930cf40a4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 44 additions and 0 deletions

View File

@ -66,6 +66,12 @@ Type: `boolean`
Defines the optimization level of the build.
### outputPath
Type: `string`
The output path of the generated files.
### poll
Type: `number`

View File

@ -122,6 +122,12 @@ Possible values: `none`, `all`, `media`, `bundles`
Define the output filename cache-busting hashing mode.
### outputPath
Type: `string`
The output path of the generated files.
### polyfills
Type: `string`

View File

@ -67,6 +67,12 @@ Type: `boolean`
Defines the optimization level of the build.
### outputPath
Type: `string`
The output path of the generated files.
### poll
Type: `number`

View File

@ -123,6 +123,12 @@ Possible values: `none`, `all`, `media`, `bundles`
Define the output filename cache-busting hashing mode.
### outputPath
Type: `string`
The output path of the generated files.
### polyfills
Type: `string`

View File

@ -67,6 +67,12 @@ Type: `boolean`
Defines the optimization level of the build.
### outputPath
Type: `string`
The output path of the generated files.
### poll
Type: `number`

View File

@ -123,6 +123,12 @@ Possible values: `none`, `all`, `media`, `bundles`
Define the output filename cache-busting hashing mode.
### outputPath
Type: `string`
The output path of the generated files.
### polyfills
Type: `string`

View File

@ -11,6 +11,10 @@
"type": "string",
"description": "The name of the Typescript configuration file."
},
"outputPath": {
"type": "string",
"description": "The output path of the generated files."
},
"watch": {
"type": "boolean",
"description": "Run build when files change.",

View File

@ -11,6 +11,10 @@
"type": "string",
"description": "The name of the Typescript configuration file."
},
"outputPath": {
"type": "string",
"description": "The output path of the generated files."
},
"watch": {
"type": "boolean",
"description": "Enable re-building when files change.",