@netlify/build 29.50.2 → 29.50.4
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/lib/core/config.js +4 -1
- package/package.json +4 -4
package/lib/core/config.js
CHANGED
|
@@ -85,12 +85,15 @@ const logConfigInfo = function ({ logs, configPath, buildDir, netlifyConfig, con
|
|
|
85
85
|
// change would create debug logs which would be too verbose.
|
|
86
86
|
// Errors are propagated and assigned to the specific plugin or core step
|
|
87
87
|
// which changed the configuration.
|
|
88
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
88
89
|
export const resolveUpdatedConfig = async function (configOpts, configMutations, cachedConfig) {
|
|
89
90
|
try {
|
|
90
91
|
return await resolveConfig({
|
|
91
92
|
...configOpts,
|
|
92
93
|
configMutations,
|
|
93
|
-
|
|
94
|
+
// TODO: remove cached Config here again as this causes tests to fail in the CLI
|
|
95
|
+
// Currently investigating the root cause.
|
|
96
|
+
// cachedConfig,
|
|
94
97
|
debug: false,
|
|
95
98
|
});
|
|
96
99
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "29.50.
|
|
3
|
+
"version": "29.50.4",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -73,12 +73,12 @@
|
|
|
73
73
|
"@netlify/config": "^20.16.0",
|
|
74
74
|
"@netlify/edge-bundler": "12.1.1",
|
|
75
75
|
"@netlify/framework-info": "^9.8.13",
|
|
76
|
-
"@netlify/functions-utils": "^5.2.
|
|
76
|
+
"@netlify/functions-utils": "^5.2.72",
|
|
77
77
|
"@netlify/git-utils": "^5.1.1",
|
|
78
78
|
"@netlify/opentelemetry-utils": "^1.2.1",
|
|
79
79
|
"@netlify/plugins-list": "^6.80.0",
|
|
80
80
|
"@netlify/run-utils": "^5.1.1",
|
|
81
|
-
"@netlify/zip-it-and-ship-it": "9.37.
|
|
81
|
+
"@netlify/zip-it-and-ship-it": "9.37.4",
|
|
82
82
|
"@sindresorhus/slugify": "^2.0.0",
|
|
83
83
|
"ansi-escapes": "^6.0.0",
|
|
84
84
|
"chalk": "^5.0.0",
|
|
@@ -165,5 +165,5 @@
|
|
|
165
165
|
"engines": {
|
|
166
166
|
"node": "^14.16.0 || >=16.0.0"
|
|
167
167
|
},
|
|
168
|
-
"gitHead": "
|
|
168
|
+
"gitHead": "f62a7f814decf726c329f3709d267020e3dfa4b8"
|
|
169
169
|
}
|