@vercel/microfrontends 1.0.1-canary.5 → 1.1.0
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/dist/bin/cli.cjs +9 -27
- package/dist/experimental/sveltekit.cjs +8 -26
- package/dist/experimental/sveltekit.cjs.map +1 -1
- package/dist/experimental/sveltekit.js +8 -26
- package/dist/experimental/sveltekit.js.map +1 -1
- package/dist/experimental/vite.cjs +8 -26
- package/dist/experimental/vite.cjs.map +1 -1
- package/dist/experimental/vite.js +8 -26
- package/dist/experimental/vite.js.map +1 -1
- package/dist/microfrontends/server.cjs +8 -26
- package/dist/microfrontends/server.cjs.map +1 -1
- package/dist/microfrontends/server.js +8 -26
- package/dist/microfrontends/server.js.map +1 -1
- package/dist/next/config.cjs +8 -26
- package/dist/next/config.cjs.map +1 -1
- package/dist/next/config.js +8 -26
- package/dist/next/config.js.map +1 -1
- package/dist/utils/mfe-port.cjs +8 -26
- package/dist/utils/mfe-port.cjs.map +1 -1
- package/dist/utils/mfe-port.js +8 -26
- package/dist/utils/mfe-port.js.map +1 -1
- package/dist/validation.cjs +8 -26
- package/dist/validation.cjs.map +1 -1
- package/dist/validation.js +8 -26
- package/dist/validation.js.map +1 -1
- package/package.json +1 -1
package/dist/utils/mfe-port.cjs
CHANGED
|
@@ -1204,9 +1204,7 @@ var schema_default = {
|
|
|
1204
1204
|
description: "Mapping of application names to the routes that they host. Only needs to be defined in the application that owns the primary microfrontend domain"
|
|
1205
1205
|
}
|
|
1206
1206
|
},
|
|
1207
|
-
required: [
|
|
1208
|
-
"applications"
|
|
1209
|
-
],
|
|
1207
|
+
required: ["applications"],
|
|
1210
1208
|
additionalProperties: false
|
|
1211
1209
|
},
|
|
1212
1210
|
Options: {
|
|
@@ -1301,9 +1299,7 @@ var schema_default = {
|
|
|
1301
1299
|
description: "Vercel project ID"
|
|
1302
1300
|
}
|
|
1303
1301
|
},
|
|
1304
|
-
required: [
|
|
1305
|
-
"projectId"
|
|
1306
|
-
],
|
|
1302
|
+
required: ["projectId"],
|
|
1307
1303
|
additionalProperties: false
|
|
1308
1304
|
},
|
|
1309
1305
|
HostConfig: {
|
|
@@ -1311,10 +1307,7 @@ var schema_default = {
|
|
|
1311
1307
|
properties: {
|
|
1312
1308
|
protocol: {
|
|
1313
1309
|
type: "string",
|
|
1314
|
-
enum: [
|
|
1315
|
-
"http",
|
|
1316
|
-
"https"
|
|
1317
|
-
],
|
|
1310
|
+
enum: ["http", "https"],
|
|
1318
1311
|
description: "The protocol to be used for the connection.\n- `http`: Hypertext Transfer Protocol (HTTP).\n- `https`: Secure Hypertext Transfer Protocol (HTTPS).\n\n*"
|
|
1319
1312
|
},
|
|
1320
1313
|
host: {
|
|
@@ -1326,9 +1319,7 @@ var schema_default = {
|
|
|
1326
1319
|
description: "The port number to be used for the connection. Common values include `80` for HTTP and `443` for HTTPS."
|
|
1327
1320
|
}
|
|
1328
1321
|
},
|
|
1329
|
-
required: [
|
|
1330
|
-
"host"
|
|
1331
|
-
],
|
|
1322
|
+
required: ["host"],
|
|
1332
1323
|
additionalProperties: false
|
|
1333
1324
|
},
|
|
1334
1325
|
Development: {
|
|
@@ -1370,10 +1361,7 @@ var schema_default = {
|
|
|
1370
1361
|
},
|
|
1371
1362
|
protocol: {
|
|
1372
1363
|
type: "string",
|
|
1373
|
-
enum: [
|
|
1374
|
-
"http",
|
|
1375
|
-
"https"
|
|
1376
|
-
],
|
|
1364
|
+
enum: ["http", "https"],
|
|
1377
1365
|
description: "The protocol to be used for the connection.\n- `http`: Hypertext Transfer Protocol (HTTP).\n- `https`: Secure Hypertext Transfer Protocol (HTTPS).\n\n*"
|
|
1378
1366
|
},
|
|
1379
1367
|
port: {
|
|
@@ -1405,9 +1393,7 @@ var schema_default = {
|
|
|
1405
1393
|
description: "Groups of path expressions that are routed to this application."
|
|
1406
1394
|
}
|
|
1407
1395
|
},
|
|
1408
|
-
required: [
|
|
1409
|
-
"routing"
|
|
1410
|
-
],
|
|
1396
|
+
required: ["routing"],
|
|
1411
1397
|
additionalProperties: false
|
|
1412
1398
|
},
|
|
1413
1399
|
Routing: {
|
|
@@ -1434,9 +1420,7 @@ var schema_default = {
|
|
|
1434
1420
|
}
|
|
1435
1421
|
}
|
|
1436
1422
|
},
|
|
1437
|
-
required: [
|
|
1438
|
-
"paths"
|
|
1439
|
-
],
|
|
1423
|
+
required: ["paths"],
|
|
1440
1424
|
additionalProperties: false
|
|
1441
1425
|
},
|
|
1442
1426
|
ChildConfig: {
|
|
@@ -1457,9 +1441,7 @@ var schema_default = {
|
|
|
1457
1441
|
description: "Applications that only serve a subset of the microfrontend routes only need to reference the name of the primary application that owns the full microfrontends configuration."
|
|
1458
1442
|
}
|
|
1459
1443
|
},
|
|
1460
|
-
required: [
|
|
1461
|
-
"partOf"
|
|
1462
|
-
],
|
|
1444
|
+
required: ["partOf"],
|
|
1463
1445
|
additionalProperties: false
|
|
1464
1446
|
}
|
|
1465
1447
|
}
|