@turbo/types 2.5.3-canary.1 → 2.5.3-canary.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 +5 -0
- package/schemas/schema.v2.json +5 -0
- package/src/types/config-v2.ts +9 -0
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -97,6 +97,11 @@
|
|
|
97
97
|
"boundaries": {
|
|
98
98
|
"$ref": "#/definitions/RootBoundariesConfig",
|
|
99
99
|
"description": "Configuration for `turbo boundaries`. Allows users to restrict a package's dependencies and dependents"
|
|
100
|
+
},
|
|
101
|
+
"noUpdateNotifier": {
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"description": "When set to `true`, disables the update notification that appears when a new version of `turbo` is available.\n\nDocumentation: https://turborepo.com/docs/reference/configuration#noupdatenotifier",
|
|
104
|
+
"default": false
|
|
100
105
|
}
|
|
101
106
|
},
|
|
102
107
|
"additionalProperties": false,
|
package/schemas/schema.v2.json
CHANGED
|
@@ -97,6 +97,11 @@
|
|
|
97
97
|
"boundaries": {
|
|
98
98
|
"$ref": "#/definitions/RootBoundariesConfig",
|
|
99
99
|
"description": "Configuration for `turbo boundaries`. Allows users to restrict a package's dependencies and dependents"
|
|
100
|
+
},
|
|
101
|
+
"noUpdateNotifier": {
|
|
102
|
+
"type": "boolean",
|
|
103
|
+
"description": "When set to `true`, disables the update notification that appears when a new version of `turbo` is available.\n\nDocumentation: https://turborepo.com/docs/reference/configuration#noupdatenotifier",
|
|
104
|
+
"default": false
|
|
100
105
|
}
|
|
101
106
|
},
|
|
102
107
|
"additionalProperties": false,
|
package/src/types/config-v2.ts
CHANGED
|
@@ -181,6 +181,15 @@ export interface RootSchema extends BaseSchema {
|
|
|
181
181
|
* Configuration for `turbo boundaries`. Allows users to restrict a package's dependencies and dependents
|
|
182
182
|
*/
|
|
183
183
|
boundaries?: RootBoundariesConfig;
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* When set to `true`, disables the update notification that appears when a new version of `turbo` is available.
|
|
187
|
+
*
|
|
188
|
+
* Documentation: https://turborepo.com/docs/reference/configuration#noupdatenotifier
|
|
189
|
+
*
|
|
190
|
+
* @defaultValue `false`
|
|
191
|
+
*/
|
|
192
|
+
noUpdateNotifier?: boolean;
|
|
184
193
|
}
|
|
185
194
|
|
|
186
195
|
export interface Pipeline {
|