@netlify/build 29.50.3 → 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.
@@ -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
- cachedConfig,
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",
3
+ "version": "29.50.4",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./lib/index.js",
@@ -165,5 +165,5 @@
165
165
  "engines": {
166
166
  "node": "^14.16.0 || >=16.0.0"
167
167
  },
168
- "gitHead": "eed20eb2676d59d26ec2fb40335bb83c8a4194ed"
168
+ "gitHead": "f62a7f814decf726c329f3709d267020e3dfa4b8"
169
169
  }