cleanup(misc): deprecate showCircularDependencies option (#5135)
This commit is contained in:
parent
feb31628e9
commit
14b1df2173
@ -252,7 +252,7 @@ Generates a service worker config for production builds.
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -110,7 +110,7 @@ Log progress to the console while building.
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -186,7 +186,7 @@ External Scripts which will be included before the main application entry
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -253,7 +253,7 @@ Generates a service worker config for production builds.
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -111,7 +111,7 @@ Log progress to the console while building.
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -187,7 +187,7 @@ External Scripts which will be included before the main application entry
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -253,7 +253,7 @@ Generates a service worker config for production builds.
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -111,7 +111,7 @@ Log progress to the console while building.
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -187,7 +187,7 @@ External Scripts which will be included before the main application entry
|
|||||||
|
|
||||||
### showCircularDependencies
|
### showCircularDependencies
|
||||||
|
|
||||||
Default: `true`
|
Default: `false`
|
||||||
|
|
||||||
Type: `boolean`
|
Type: `boolean`
|
||||||
|
|
||||||
|
|||||||
@ -262,7 +262,8 @@
|
|||||||
"showCircularDependencies": {
|
"showCircularDependencies": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Show circular dependency warnings on builds.",
|
"description": "Show circular dependency warnings on builds.",
|
||||||
"default": true
|
"default": false,
|
||||||
|
"x-deprecated": "The recommended method to detect circular dependencies in project code is to use a either a lint rule or other external tooling."
|
||||||
},
|
},
|
||||||
"buildOptimizer": {
|
"buildOptimizer": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|||||||
@ -82,7 +82,8 @@
|
|||||||
"showCircularDependencies": {
|
"showCircularDependencies": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Show circular dependency warnings on builds.",
|
"description": "Show circular dependency warnings on builds.",
|
||||||
"default": true
|
"default": false,
|
||||||
|
"x-deprecated": "The recommended method to detect circular dependencies in project code is to use a either a lint rule or other external tooling."
|
||||||
},
|
},
|
||||||
"maxWorkers": {
|
"maxWorkers": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
|
|||||||
@ -214,7 +214,8 @@
|
|||||||
"showCircularDependencies": {
|
"showCircularDependencies": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Show circular dependency warnings on builds.",
|
"description": "Show circular dependency warnings on builds.",
|
||||||
"default": true
|
"default": false,
|
||||||
|
"x-deprecated": "The recommended method to detect circular dependencies in project code is to use a either a lint rule or other external tooling."
|
||||||
},
|
},
|
||||||
"memoryLimit": {
|
"memoryLimit": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user