Skip to content

Commit cfca731

Browse files
chore: update schema
1 parent 55abb84 commit cfca731

File tree

8 files changed

+1797
-1257
lines changed

8 files changed

+1797
-1257
lines changed

packages/enhanced/src/schemas/container/ContainerPlugin.check.ts

Lines changed: 516 additions & 478 deletions
Large diffs are not rendered by default.

packages/enhanced/src/schemas/container/ContainerPlugin.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,16 @@
294294
"type": "object",
295295
"additionalProperties": false,
296296
"properties": {
297-
"asyncStartup": {
298-
"description": "Enable asynchronous startup",
299-
"type": "boolean"
297+
"federationRuntime": {
298+
"description": "Configure federation runtime mode. When set to 'hoisted', enables hoisted runtime mode. When false, disables federation runtime.",
299+
"oneOf": [
300+
{
301+
"enum": [false]
302+
},
303+
{
304+
"enum": ["hoisted"]
305+
}
306+
]
300307
},
301308
"externalRuntime": {
302309
"description": "After setting true, the external MF runtime will be used and the runtime provided by the consumer will be used. (Please make sure your consumer has provideExternalRuntime: true set, otherwise it will not run properly!)",

packages/enhanced/src/schemas/container/ContainerPlugin.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,17 @@ export default {
319319
type: 'object',
320320
additionalProperties: false,
321321
properties: {
322-
asyncStartup: {
323-
description: 'Enable asynchronous startup',
324-
type: 'boolean',
322+
federationRuntime: {
323+
description:
324+
"Configure federation runtime mode. When set to 'hoisted', enables hoisted runtime mode. When false, disables federation runtime.",
325+
oneOf: [
326+
{
327+
enum: [false],
328+
},
329+
{
330+
enum: ['hoisted'],
331+
},
332+
],
325333
},
326334
externalRuntime: {
327335
description:

0 commit comments

Comments
 (0)