@netlify/build 26.5.0-rc → 26.6.0-rc
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": "26.
|
|
3
|
+
"version": "26.6.0-rc",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./src/core/main.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@netlify/plugin-edge-handlers": "^3.0.4",
|
|
64
64
|
"@netlify/plugins-list": "^6.3.0",
|
|
65
65
|
"@netlify/run-utils": "^4.0.0",
|
|
66
|
-
"@netlify/zip-it-and-ship-it": "5.5.
|
|
66
|
+
"@netlify/zip-it-and-ship-it": "5.5.1",
|
|
67
67
|
"@sindresorhus/slugify": "^1.1.0",
|
|
68
68
|
"@types/node": "^16.0.0",
|
|
69
69
|
"ansi-escapes": "^4.3.2",
|
|
@@ -37,6 +37,10 @@ const normalizeFunctionConfig = ({ buildDir, functionConfig = {}, isRunningLocal
|
|
|
37
37
|
// path that will get cached in between builds, allowing us to speed up the
|
|
38
38
|
// build process.
|
|
39
39
|
rustTargetDirectory: isRunningLocally ? undefined : resolve(buildDir, '.netlify', 'rust-functions-cache', '[name]'),
|
|
40
|
+
|
|
41
|
+
// Go functions should be zipped only when building locally. When running in
|
|
42
|
+
// buildbot, the Go API client will handle the zipping.
|
|
43
|
+
zipGo: isRunningLocally ? true : undefined,
|
|
40
44
|
})
|
|
41
45
|
|
|
42
46
|
const getZisiParameters = ({
|