@vercel/microfrontends 0.19.2 → 0.19.3
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 +36 -29
- package/dist/microfrontends/server.cjs +27 -28
- package/dist/microfrontends/server.cjs.map +1 -1
- package/dist/microfrontends/server.js +27 -28
- package/dist/microfrontends/server.js.map +1 -1
- package/dist/next/config.cjs +27 -28
- package/dist/next/config.cjs.map +1 -1
- package/dist/next/config.js +27 -28
- package/dist/next/config.js.map +1 -1
- package/dist/utils/mfe-port.cjs +27 -28
- package/dist/utils/mfe-port.cjs.map +1 -1
- package/dist/utils/mfe-port.js +27 -28
- package/dist/utils/mfe-port.js.map +1 -1
- package/dist/validation.cjs +27 -28
- package/dist/validation.cjs.map +1 -1
- package/dist/validation.js +27 -28
- package/dist/validation.js.map +1 -1
- package/package.json +9 -1
package/dist/next/config.js
CHANGED
|
@@ -1146,15 +1146,14 @@ var schema_default = {
|
|
|
1146
1146
|
type: "string",
|
|
1147
1147
|
description: "Vercel project ID"
|
|
1148
1148
|
},
|
|
1149
|
-
development: {
|
|
1150
|
-
$ref: "#/definitions/Development"
|
|
1151
|
-
},
|
|
1152
1149
|
production: {
|
|
1153
1150
|
$ref: "#/definitions/HostConfig",
|
|
1154
1151
|
deprecated: "This is a duplicate of the `development.fallback` field and this will be removed soon."
|
|
1152
|
+
},
|
|
1153
|
+
development: {
|
|
1154
|
+
$ref: "#/definitions/Development"
|
|
1155
1155
|
}
|
|
1156
1156
|
},
|
|
1157
|
-
required: ["production"],
|
|
1158
1157
|
additionalProperties: false
|
|
1159
1158
|
},
|
|
1160
1159
|
Vercel: {
|
|
@@ -1168,6 +1167,26 @@ var schema_default = {
|
|
|
1168
1167
|
required: ["projectId"],
|
|
1169
1168
|
additionalProperties: false
|
|
1170
1169
|
},
|
|
1170
|
+
HostConfig: {
|
|
1171
|
+
type: "object",
|
|
1172
|
+
properties: {
|
|
1173
|
+
protocol: {
|
|
1174
|
+
type: "string",
|
|
1175
|
+
enum: ["http", "https"],
|
|
1176
|
+
description: "The protocol to be used for the connection.\n- `http`: Hypertext Transfer Protocol (HTTP).\n- `https`: Secure Hypertext Transfer Protocol (HTTPS).\n\n*"
|
|
1177
|
+
},
|
|
1178
|
+
host: {
|
|
1179
|
+
type: "string",
|
|
1180
|
+
description: "The hostname or IP address of the server. This can be a domain name (e.g., `example.com`) or an IP address (e.g., `192.168.1.1`)."
|
|
1181
|
+
},
|
|
1182
|
+
port: {
|
|
1183
|
+
type: "number",
|
|
1184
|
+
description: "The port number to be used for the connection. Common values include `80` for HTTP and `443` for HTTPS."
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
required: ["host"],
|
|
1188
|
+
additionalProperties: false
|
|
1189
|
+
},
|
|
1171
1190
|
Development: {
|
|
1172
1191
|
type: "object",
|
|
1173
1192
|
properties: {
|
|
@@ -1216,26 +1235,6 @@ var schema_default = {
|
|
|
1216
1235
|
}
|
|
1217
1236
|
}
|
|
1218
1237
|
},
|
|
1219
|
-
HostConfig: {
|
|
1220
|
-
type: "object",
|
|
1221
|
-
properties: {
|
|
1222
|
-
protocol: {
|
|
1223
|
-
type: "string",
|
|
1224
|
-
enum: ["http", "https"],
|
|
1225
|
-
description: "The protocol to be used for the connection.\n- `http`: Hypertext Transfer Protocol (HTTP).\n- `https`: Secure Hypertext Transfer Protocol (HTTPS).\n\n*"
|
|
1226
|
-
},
|
|
1227
|
-
host: {
|
|
1228
|
-
type: "string",
|
|
1229
|
-
description: "The hostname or IP address of the server. This can be a domain name (e.g., `example.com`) or an IP address (e.g., `192.168.1.1`)."
|
|
1230
|
-
},
|
|
1231
|
-
port: {
|
|
1232
|
-
type: "number",
|
|
1233
|
-
description: "The port number to be used for the connection. Common values include `80` for HTTP and `443` for HTTPS."
|
|
1234
|
-
}
|
|
1235
|
-
},
|
|
1236
|
-
required: ["host"],
|
|
1237
|
-
additionalProperties: false
|
|
1238
|
-
},
|
|
1239
1238
|
ChildApplication: {
|
|
1240
1239
|
type: "object",
|
|
1241
1240
|
properties: {
|
|
@@ -1247,16 +1246,16 @@ var schema_default = {
|
|
|
1247
1246
|
type: "string",
|
|
1248
1247
|
description: "Vercel project ID"
|
|
1249
1248
|
},
|
|
1249
|
+
production: {
|
|
1250
|
+
$ref: "#/definitions/HostConfig",
|
|
1251
|
+
deprecated: "This is a duplicate of the `development.fallback` field and this will be removed soon."
|
|
1252
|
+
},
|
|
1250
1253
|
development: {
|
|
1251
1254
|
$ref: "#/definitions/Development"
|
|
1252
1255
|
},
|
|
1253
1256
|
routing: {
|
|
1254
1257
|
$ref: "#/definitions/Routing",
|
|
1255
1258
|
description: "Groups of path expressions that are routed to this application."
|
|
1256
|
-
},
|
|
1257
|
-
production: {
|
|
1258
|
-
$ref: "#/definitions/HostConfig",
|
|
1259
|
-
deprecated: "This is a duplicate of the `development.fallback` field and this will be removed soon."
|
|
1260
1259
|
}
|
|
1261
1260
|
},
|
|
1262
1261
|
required: ["routing"],
|