@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.js
CHANGED
|
@@ -1170,9 +1170,7 @@ var schema_default = {
|
|
|
1170
1170
|
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"
|
|
1171
1171
|
}
|
|
1172
1172
|
},
|
|
1173
|
-
required: [
|
|
1174
|
-
"applications"
|
|
1175
|
-
],
|
|
1173
|
+
required: ["applications"],
|
|
1176
1174
|
additionalProperties: false
|
|
1177
1175
|
},
|
|
1178
1176
|
Options: {
|
|
@@ -1267,9 +1265,7 @@ var schema_default = {
|
|
|
1267
1265
|
description: "Vercel project ID"
|
|
1268
1266
|
}
|
|
1269
1267
|
},
|
|
1270
|
-
required: [
|
|
1271
|
-
"projectId"
|
|
1272
|
-
],
|
|
1268
|
+
required: ["projectId"],
|
|
1273
1269
|
additionalProperties: false
|
|
1274
1270
|
},
|
|
1275
1271
|
HostConfig: {
|
|
@@ -1277,10 +1273,7 @@ var schema_default = {
|
|
|
1277
1273
|
properties: {
|
|
1278
1274
|
protocol: {
|
|
1279
1275
|
type: "string",
|
|
1280
|
-
enum: [
|
|
1281
|
-
"http",
|
|
1282
|
-
"https"
|
|
1283
|
-
],
|
|
1276
|
+
enum: ["http", "https"],
|
|
1284
1277
|
description: "The protocol to be used for the connection.\n- `http`: Hypertext Transfer Protocol (HTTP).\n- `https`: Secure Hypertext Transfer Protocol (HTTPS).\n\n*"
|
|
1285
1278
|
},
|
|
1286
1279
|
host: {
|
|
@@ -1292,9 +1285,7 @@ var schema_default = {
|
|
|
1292
1285
|
description: "The port number to be used for the connection. Common values include `80` for HTTP and `443` for HTTPS."
|
|
1293
1286
|
}
|
|
1294
1287
|
},
|
|
1295
|
-
required: [
|
|
1296
|
-
"host"
|
|
1297
|
-
],
|
|
1288
|
+
required: ["host"],
|
|
1298
1289
|
additionalProperties: false
|
|
1299
1290
|
},
|
|
1300
1291
|
Development: {
|
|
@@ -1336,10 +1327,7 @@ var schema_default = {
|
|
|
1336
1327
|
},
|
|
1337
1328
|
protocol: {
|
|
1338
1329
|
type: "string",
|
|
1339
|
-
enum: [
|
|
1340
|
-
"http",
|
|
1341
|
-
"https"
|
|
1342
|
-
],
|
|
1330
|
+
enum: ["http", "https"],
|
|
1343
1331
|
description: "The protocol to be used for the connection.\n- `http`: Hypertext Transfer Protocol (HTTP).\n- `https`: Secure Hypertext Transfer Protocol (HTTPS).\n\n*"
|
|
1344
1332
|
},
|
|
1345
1333
|
port: {
|
|
@@ -1371,9 +1359,7 @@ var schema_default = {
|
|
|
1371
1359
|
description: "Groups of path expressions that are routed to this application."
|
|
1372
1360
|
}
|
|
1373
1361
|
},
|
|
1374
|
-
required: [
|
|
1375
|
-
"routing"
|
|
1376
|
-
],
|
|
1362
|
+
required: ["routing"],
|
|
1377
1363
|
additionalProperties: false
|
|
1378
1364
|
},
|
|
1379
1365
|
Routing: {
|
|
@@ -1400,9 +1386,7 @@ var schema_default = {
|
|
|
1400
1386
|
}
|
|
1401
1387
|
}
|
|
1402
1388
|
},
|
|
1403
|
-
required: [
|
|
1404
|
-
"paths"
|
|
1405
|
-
],
|
|
1389
|
+
required: ["paths"],
|
|
1406
1390
|
additionalProperties: false
|
|
1407
1391
|
},
|
|
1408
1392
|
ChildConfig: {
|
|
@@ -1423,9 +1407,7 @@ var schema_default = {
|
|
|
1423
1407
|
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."
|
|
1424
1408
|
}
|
|
1425
1409
|
},
|
|
1426
|
-
required: [
|
|
1427
|
-
"partOf"
|
|
1428
|
-
],
|
|
1410
|
+
required: ["partOf"],
|
|
1429
1411
|
additionalProperties: false
|
|
1430
1412
|
}
|
|
1431
1413
|
}
|