@netlify/build 29.27.0 → 29.28.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "29.
|
|
3
|
+
"version": "29.28.0",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
"engines": {
|
|
147
147
|
"node": "^14.16.0 || >=16.0.0"
|
|
148
148
|
},
|
|
149
|
-
"gitHead": "
|
|
149
|
+
"gitHead": "4731f03bc8ba9cc1a8e42f95777ed24497c727b5"
|
|
150
150
|
}
|
|
@@ -32,6 +32,10 @@ interface NetlifyPlugin {
|
|
|
32
32
|
inputs: PluginInputs
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
+
interface ImagesConfig {
|
|
36
|
+
remote_images: string[]
|
|
37
|
+
}
|
|
38
|
+
|
|
35
39
|
/* eslint-disable camelcase -- some properties are named in snake case in this API */
|
|
36
40
|
|
|
37
41
|
interface NetlifyConfig {
|
|
@@ -53,6 +57,10 @@ interface NetlifyConfig {
|
|
|
53
57
|
functions: Functions
|
|
54
58
|
build: Build
|
|
55
59
|
plugins: readonly NetlifyPlugin[]
|
|
60
|
+
/**
|
|
61
|
+
* object with options for image transforms
|
|
62
|
+
*/
|
|
63
|
+
images: ImagesConfig
|
|
56
64
|
}
|
|
57
65
|
|
|
58
66
|
/* eslint-enable camelcase */
|