@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 13.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Support configuration via vercel.toml ([#15750](https://github.com/vercel/vercel/pull/15750))
8
+
3
9
  ## 13.13.0
4
10
 
5
11
  ### Minor Changes
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "13.13.0",
3
+ "version": "13.14.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",