@vercel/build-utils 11.0.0 → 11.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 11.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix 404 status for /api routes when using Hono with the vercel dev server ([#13706](https://github.com/vercel/vercel/pull/13706))
8
+
3
9
  ## 11.0.0
4
10
 
5
11
  ### Major Changes
package/dist/types.d.ts CHANGED
@@ -159,6 +159,10 @@ export interface ShouldServeOptions {
159
159
  * in `vercel.json`.
160
160
  */
161
161
  config: Config;
162
+ /**
163
+ * Whether another builder has already matched the given request.
164
+ */
165
+ hasMatched?: boolean;
162
166
  }
163
167
  /**
164
168
  * `startDevServer()` is given the same parameters as `build()`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "11.0.0",
3
+ "version": "11.0.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",