@vercel/build-utils 8.3.0 → 8.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 +6 -0
- package/dist/types.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/types.d.ts
CHANGED
@@ -96,6 +96,12 @@ export interface BuildOptions {
|
|
96
96
|
* on the build environment.
|
97
97
|
*/
|
98
98
|
meta?: Meta;
|
99
|
+
/**
|
100
|
+
* A callback to be invoked by a builder after a project's
|
101
|
+
* build command has been run but before the outputs have been
|
102
|
+
* fully processed
|
103
|
+
*/
|
104
|
+
buildCallback?: (opts: Omit<BuildOptions, 'buildCallback'>) => Promise<void>;
|
99
105
|
}
|
100
106
|
export interface PrepareCacheOptions {
|
101
107
|
/**
|