@vercel/client 18.2.8 → 18.2.10
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 +2 -2
- package/package.json +2 -2
package/dist/utils/index.js
CHANGED
|
@@ -271,9 +271,9 @@ async function getVercelIgnore(cwd, prebuilt, vercelOutputDir) {
|
|
|
271
271
|
const parts = relOutputDir.split(import_path.sep);
|
|
272
272
|
parts.forEach((_, i) => {
|
|
273
273
|
const level = parts.slice(0, i + 1).join("/");
|
|
274
|
-
ignores.push(
|
|
274
|
+
ignores.push(`!/${level}`);
|
|
275
275
|
});
|
|
276
|
-
ignores.push(
|
|
276
|
+
ignores.push(`!/${parts.join("/")}/**`);
|
|
277
277
|
ig.add(ignores.join("\n"));
|
|
278
278
|
} else {
|
|
279
279
|
ignores = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.10",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -37,7 +37,7 @@
|
|
|
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.0.
|
|
40
|
+
"@vercel/build-utils": "14.0.5",
|
|
41
41
|
"@vercel/routing-utils": "6.4.1",
|
|
42
42
|
"@vercel/error-utils": "2.2.1"
|
|
43
43
|
},
|