@vercel/client 18.3.5 → 18.4.1
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/utils/index.js +7 -3
- package/package.json +4 -4
package/dist/utils/index.js
CHANGED
|
@@ -242,15 +242,19 @@ async function buildFileTree(path, {
|
|
|
242
242
|
findConfig: findMicrofrontendsConfig,
|
|
243
243
|
inferMicrofrontendsLocation
|
|
244
244
|
} = await import("@vercel/microfrontends/microfrontends/utils");
|
|
245
|
+
const customConfigFilename = void 0;
|
|
245
246
|
let microfrontendConfigPath = findMicrofrontendsConfig({
|
|
246
|
-
dir: (0, import_path.join)(path, rootDirectory || "")
|
|
247
|
+
dir: (0, import_path.join)(path, rootDirectory || ""),
|
|
248
|
+
customConfigFilename
|
|
247
249
|
});
|
|
248
250
|
if (!microfrontendConfigPath && !rootDirectory && projectName) {
|
|
249
251
|
microfrontendConfigPath = findMicrofrontendsConfig({
|
|
250
252
|
dir: inferMicrofrontendsLocation({
|
|
251
253
|
repositoryRoot: path,
|
|
252
|
-
|
|
253
|
-
|
|
254
|
+
applicationContext: { name: projectName },
|
|
255
|
+
customConfigFilename
|
|
256
|
+
}),
|
|
257
|
+
customConfigFilename
|
|
254
258
|
});
|
|
255
259
|
}
|
|
256
260
|
if (microfrontendConfigPath) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.4.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"vitest": "4.1.10"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@vercel/microfrontends": "
|
|
30
|
+
"@vercel/microfrontends": "2.4.0",
|
|
31
31
|
"async-retry": "1.2.3",
|
|
32
32
|
"async-sema": "3.0.0",
|
|
33
33
|
"fs-extra": "8.0.1",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"querystring": "^0.2.0",
|
|
38
38
|
"sleep-promise": "8.0.1",
|
|
39
39
|
"tar-fs": "1.16.3",
|
|
40
|
-
"@vercel/build-utils": "14.
|
|
40
|
+
"@vercel/build-utils": "14.10.1",
|
|
41
41
|
"@vercel/error-utils": "2.2.1",
|
|
42
|
-
"@vercel/routing-utils": "6.
|
|
42
|
+
"@vercel/routing-utils": "6.6.0"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "node ../../utils/build.mjs",
|