@vercel/build-utils 13.3.4 → 13.3.5
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 +9 -0
- package/dist/types.d.ts +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @vercel/build-utils
|
|
2
2
|
|
|
3
|
+
## 13.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add service configuration to BuildOptions ([#14918](https://github.com/vercel/vercel/pull/14918))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`9b8f974bbb64fb857b068428b0c2fdccee6ad83c`](https://github.com/vercel/vercel/commit/9b8f974bbb64fb857b068428b0c2fdccee6ad83c)]:
|
|
10
|
+
- @vercel/python-analysis@0.4.0
|
|
11
|
+
|
|
3
12
|
## 13.3.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/types.d.ts
CHANGED
|
@@ -103,6 +103,16 @@ export interface BuildOptions {
|
|
|
103
103
|
* The current trace state from the internal vc tracing
|
|
104
104
|
*/
|
|
105
105
|
span?: Span;
|
|
106
|
+
/**
|
|
107
|
+
* Service-specific options. Only present when the build is part of a
|
|
108
|
+
* multi-service project.
|
|
109
|
+
*/
|
|
110
|
+
service?: {
|
|
111
|
+
/** URL path prefix where the service is mounted (e.g., "/api"). */
|
|
112
|
+
routePrefix?: string;
|
|
113
|
+
/** Workspace directory for this service, relative to the project root. */
|
|
114
|
+
workspace?: string;
|
|
115
|
+
};
|
|
106
116
|
}
|
|
107
117
|
export interface PrepareCacheOptions {
|
|
108
118
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/build-utils",
|
|
3
|
-
"version": "13.3.
|
|
3
|
+
"version": "13.3.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"directory": "packages/now-build-utils"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@vercel/python-analysis": "0.
|
|
14
|
+
"@vercel/python-analysis": "0.4.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@iarna/toml": "2.2.3",
|