@vercel/build-utils 6.3.0 → 6.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/dist/types.d.ts +2 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
@@ -313,6 +313,7 @@ export interface BuilderV3 {
|
|
313
313
|
startDevServer?: StartDevServer;
|
314
314
|
}
|
315
315
|
declare type ImageFormat = 'image/avif' | 'image/webp';
|
316
|
+
declare type ImageContentDispositionType = 'inline' | 'attachment';
|
316
317
|
export declare type RemotePattern = {
|
317
318
|
/**
|
318
319
|
* Must be `http` or `https`.
|
@@ -344,6 +345,7 @@ export interface Images {
|
|
344
345
|
formats?: ImageFormat[];
|
345
346
|
dangerouslyAllowSVG?: boolean;
|
346
347
|
contentSecurityPolicy?: string;
|
348
|
+
contentDispositionType?: ImageContentDispositionType;
|
347
349
|
}
|
348
350
|
/**
|
349
351
|
* If a Builder ends up creating filesystem outputs conforming to
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/build-utils",
|
3
|
-
"version": "6.3.
|
3
|
+
"version": "6.3.1",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.js",
|
@@ -51,5 +51,5 @@
|
|
51
51
|
"typescript": "4.3.4",
|
52
52
|
"yazl": "2.5.1"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "34d199bd4925fab1fb32b8dae507e2383d38493a"
|
55
55
|
}
|