@turbo/types 2.10.1 → 2.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schemas/schema.json +2 -2
- package/schemas/schema.ts +2 -2
- package/schemas/schema.v2.json +1 -1
- package/src/types/config-v2.ts +2 -2
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
]
|
|
83
83
|
},
|
|
84
84
|
"dangerouslyDisablePackageManagerCheck": {
|
|
85
|
-
"description": "Disable
|
|
85
|
+
"description": "Disable package manager declaration checks in root `package.json`.\n\nThis is highly discouraged as it leaves `turbo` dependent on system configuration to infer the correct package manager. Some turbo features are disabled if this is set to true.",
|
|
86
86
|
"anyOf": [
|
|
87
87
|
{
|
|
88
88
|
"$ref": "#/definitions/Boolean"
|
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
]
|
|
393
393
|
},
|
|
394
394
|
"dangerouslyDisablePackageManagerCheck": {
|
|
395
|
-
"description": "Disable
|
|
395
|
+
"description": "Disable package manager declaration checks in root `package.json`.",
|
|
396
396
|
"anyOf": [
|
|
397
397
|
{
|
|
398
398
|
"$ref": "#/definitions/Boolean"
|
package/schemas/schema.ts
CHANGED
|
@@ -135,7 +135,7 @@ export interface RootSchema extends BaseSchema {
|
|
|
135
135
|
concurrency?: string;
|
|
136
136
|
|
|
137
137
|
/**
|
|
138
|
-
* Disable
|
|
138
|
+
* Disable package manager declaration checks in root `package.json`.
|
|
139
139
|
*
|
|
140
140
|
* This is highly discouraged as it leaves `turbo` dependent on system
|
|
141
141
|
* configuration to infer the correct package manager.
|
|
@@ -366,7 +366,7 @@ export interface GlobalConfig {
|
|
|
366
366
|
concurrency?: string;
|
|
367
367
|
|
|
368
368
|
/**
|
|
369
|
-
* Disable
|
|
369
|
+
* Disable package manager declaration checks in root `package.json`.
|
|
370
370
|
*
|
|
371
371
|
* @defaultValue `false`
|
|
372
372
|
*/
|
package/schemas/schema.v2.json
CHANGED
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
]
|
|
85
85
|
},
|
|
86
86
|
"dangerouslyDisablePackageManagerCheck": {
|
|
87
|
-
"description": "Disable
|
|
87
|
+
"description": "Disable package manager declaration checks in root `package.json`.\n\nThis is highly discouraged as it leaves `turbo` dependent on system configuration to infer the correct package manager. Some turbo features are disabled if this is set to true.",
|
|
88
88
|
"anyOf": [
|
|
89
89
|
{
|
|
90
90
|
"$ref": "#/definitions/Boolean"
|
package/src/types/config-v2.ts
CHANGED
|
@@ -135,7 +135,7 @@ export interface RootSchema extends BaseSchema {
|
|
|
135
135
|
concurrency?: string;
|
|
136
136
|
|
|
137
137
|
/**
|
|
138
|
-
* Disable
|
|
138
|
+
* Disable package manager declaration checks in root `package.json`.
|
|
139
139
|
*
|
|
140
140
|
* This is highly discouraged as it leaves `turbo` dependent on system
|
|
141
141
|
* configuration to infer the correct package manager.
|
|
@@ -366,7 +366,7 @@ export interface GlobalConfig {
|
|
|
366
366
|
concurrency?: string;
|
|
367
367
|
|
|
368
368
|
/**
|
|
369
|
-
* Disable
|
|
369
|
+
* Disable package manager declaration checks in root `package.json`.
|
|
370
370
|
*
|
|
371
371
|
* @defaultValue `false`
|
|
372
372
|
*/
|