@vercel/build-utils 13.2.17 → 13.3.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,21 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 13.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Replace Python-based AST parser with WASM-based `@vercel/python-analysis` for detecting Python entrypoints. This eliminates the need for a Python runtime when analyzing Python files for WSGI/ASGI application patterns. ([#14843](https://github.com/vercel/vercel/pull/14843))
8
+
9
+ ## 13.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - Add multi-service support for `vercel dev`. When `VERCEL_USE_EXPERIMENTAL_SERVICES=1` is set, the CLI auto-detects different multi-service layouts and orchestrates dev servers for each service through a single proxy server. ([#14805](https://github.com/vercel/vercel/pull/14805))
14
+
15
+ ### Patch Changes
16
+
17
+ - [services] add `services` to `config.json` ([#14847](https://github.com/vercel/vercel/pull/14847))
18
+
3
19
  ## 13.2.17
4
20
 
5
21
  ### Patch Changes
package/build.mjs CHANGED
@@ -1,3 +1,13 @@
1
1
  import { tsc, esbuild } from '../../utils/build.mjs';
2
2
 
3
- await Promise.all([tsc(), esbuild().then(() => esbuild({ bundle: true }))]);
3
+ await Promise.all([
4
+ tsc(),
5
+ esbuild().then(() =>
6
+ esbuild({
7
+ bundle: true,
8
+ // Keep @vercel/python-analysis external because its WASM module uses
9
+ // require.resolve.
10
+ external: ['@vercel/python-analysis'],
11
+ })
12
+ ),
13
+ ]);