Skip to content

Commit

Permalink
fix(nx): add outputPath in schema.json for web and node build build…
Browse files Browse the repository at this point in the history
…ers. (nrwl#1959)

Related: nrwl#1945
  • Loading branch information
jaysoo authored and Doginal committed Oct 30, 2019
1 parent 025e325 commit 934eb6c
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/angular/api-node/builders/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions docs/angular/api-web/builders/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions docs/react/api-node/builders/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions docs/react/api-web/builders/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions docs/web/api-node/builders/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions docs/web/api-web/builders/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
4 changes: 4 additions & 0 deletions packages/node/src/builders/build/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
4 changes: 4 additions & 0 deletions packages/web/src/builders/build/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down

0 comments on commit 934eb6c

Please sign in to comment.