@vercel/build-utils 13.13.0 → 13.14.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/CHANGELOG.md +6 -0
- package/dist/get-ignore-filter.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -83,7 +83,7 @@ async function get_ignore_filter_default(downloadPath, rootDirectory) {
|
|
|
83
83
|
}
|
|
84
84
|
const ignoreFilter = (0, import_ignore.default)().add(clearRelative(ignoreContents[0]));
|
|
85
85
|
return function(p) {
|
|
86
|
-
if (p === "now.json" || p === "vercel.json")
|
|
86
|
+
if (p === "now.json" || p === "vercel.json" || p === "vercel.toml")
|
|
87
87
|
return false;
|
|
88
88
|
return ignoreFilter.test(p).ignored;
|
|
89
89
|
};
|
package/dist/index.js
CHANGED
|
@@ -23233,7 +23233,7 @@ async function get_ignore_filter_default(downloadPath, rootDirectory) {
|
|
|
23233
23233
|
}
|
|
23234
23234
|
const ignoreFilter = (0, import_ignore.default)().add(clearRelative(ignoreContents[0]));
|
|
23235
23235
|
return function(p) {
|
|
23236
|
-
if (p === "now.json" || p === "vercel.json")
|
|
23236
|
+
if (p === "now.json" || p === "vercel.json" || p === "vercel.toml")
|
|
23237
23237
|
return false;
|
|
23238
23238
|
return ignoreFilter.test(p).ignored;
|
|
23239
23239
|
};
|