@turbo/types 2.5.5-canary.0 → 2.5.5
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
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -102,6 +102,12 @@
|
|
|
102
102
|
"type": "boolean",
|
|
103
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
104
|
"default": false
|
|
105
|
+
},
|
|
106
|
+
"futureFlags": {
|
|
107
|
+
"type": "object",
|
|
108
|
+
"additionalProperties": {},
|
|
109
|
+
"description": "Opt into breaking changes prior to major releases, experimental features, and beta features.",
|
|
110
|
+
"default": {}
|
|
105
111
|
}
|
|
106
112
|
},
|
|
107
113
|
"additionalProperties": false,
|
package/schemas/schema.v2.json
CHANGED
|
@@ -102,6 +102,12 @@
|
|
|
102
102
|
"type": "boolean",
|
|
103
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
104
|
"default": false
|
|
105
|
+
},
|
|
106
|
+
"futureFlags": {
|
|
107
|
+
"type": "object",
|
|
108
|
+
"additionalProperties": {},
|
|
109
|
+
"description": "Opt into breaking changes prior to major releases, experimental features, and beta features.",
|
|
110
|
+
"default": {}
|
|
105
111
|
}
|
|
106
112
|
},
|
|
107
113
|
"additionalProperties": false,
|
package/src/json/frameworks.json
CHANGED
|
@@ -93,7 +93,8 @@
|
|
|
93
93
|
"STORMKIT",
|
|
94
94
|
"NOW_BUILDER",
|
|
95
95
|
"ZEABUR",
|
|
96
|
-
"RENDER"
|
|
96
|
+
"RENDER",
|
|
97
|
+
"LAUNCH_EDITOR"
|
|
97
98
|
],
|
|
98
99
|
"dependencyMatch": {
|
|
99
100
|
"strategy": "some",
|
|
@@ -148,7 +149,7 @@
|
|
|
148
149
|
{
|
|
149
150
|
"slug": "vue",
|
|
150
151
|
"name": "Vue",
|
|
151
|
-
"envWildcards": ["VUE_APP_*"],
|
|
152
|
+
"envWildcards": ["VUE_APP_*", "LAUNCH_EDITOR"],
|
|
152
153
|
"dependencyMatch": {
|
|
153
154
|
"strategy": "all",
|
|
154
155
|
"dependencies": ["@vue/cli-service"]
|
package/src/types/config-v2.ts
CHANGED
|
@@ -190,6 +190,13 @@ export interface RootSchema extends BaseSchema {
|
|
|
190
190
|
* @defaultValue `false`
|
|
191
191
|
*/
|
|
192
192
|
noUpdateNotifier?: boolean;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Opt into breaking changes prior to major releases, experimental features, and beta features.
|
|
196
|
+
*
|
|
197
|
+
* @defaultValue `{}`
|
|
198
|
+
*/
|
|
199
|
+
futureFlags?: Record<string, unknown>;
|
|
193
200
|
}
|
|
194
201
|
|
|
195
202
|
export interface Pipeline {
|