@netlify/build 26.3.5 → 26.3.8
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.
|
|
3
|
+
"version": "26.3.8",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./src/core/main.js",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"@netlify/functions-utils": "^4.0.0",
|
|
62
62
|
"@netlify/git-utils": "^4.0.0",
|
|
63
63
|
"@netlify/plugin-edge-handlers": "^3.0.6",
|
|
64
|
-
"@netlify/plugins-list": "^6.
|
|
64
|
+
"@netlify/plugins-list": "^6.13.1",
|
|
65
65
|
"@netlify/run-utils": "^4.0.0",
|
|
66
|
-
"@netlify/zip-it-and-ship-it": "5.
|
|
66
|
+
"@netlify/zip-it-and-ship-it": "5.9.0",
|
|
67
67
|
"@sindresorhus/slugify": "^2.0.0",
|
|
68
68
|
"@types/node": "^16.0.0",
|
|
69
69
|
"ansi-escapes": "^5.0.0",
|
package/src/core/config.js
CHANGED
|
@@ -143,6 +143,7 @@ export const saveUpdatedConfig = async function ({
|
|
|
143
143
|
headersPath,
|
|
144
144
|
redirectsPath,
|
|
145
145
|
logs,
|
|
146
|
+
featureFlags,
|
|
146
147
|
context,
|
|
147
148
|
branch,
|
|
148
149
|
debug,
|
|
@@ -160,6 +161,7 @@ export const saveUpdatedConfig = async function ({
|
|
|
160
161
|
context,
|
|
161
162
|
branch,
|
|
162
163
|
logs,
|
|
164
|
+
featureFlags,
|
|
163
165
|
})
|
|
164
166
|
|
|
165
167
|
await logConfigOnUpload({ logs, configPath, debug })
|
|
@@ -16,6 +16,7 @@ const coreStep = async function ({
|
|
|
16
16
|
buildbotServerSocket,
|
|
17
17
|
events,
|
|
18
18
|
logs,
|
|
19
|
+
featureFlags,
|
|
19
20
|
context,
|
|
20
21
|
branch,
|
|
21
22
|
configMutations,
|
|
@@ -35,6 +36,7 @@ const coreStep = async function ({
|
|
|
35
36
|
headersPath,
|
|
36
37
|
redirectsPath,
|
|
37
38
|
logs,
|
|
39
|
+
featureFlags,
|
|
38
40
|
context,
|
|
39
41
|
branch,
|
|
40
42
|
debug,
|