@netlify/build 29.0.3-rc.0 → 29.0.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.
@@ -28,23 +28,6 @@ const addPluginNodeVersion = function ({ pluginOptions, pluginOptions: { loadedF
28
28
 
29
29
  Read more about our minimum required version in our ${link('forums announcement', 'https://answers.netlify.com/t/build-plugins-dropping-support-for-node-js-12/79421')}`);
30
30
  }
31
- console.log(`
32
- @@@@ -----
33
- DEBUG:
34
-
35
- PLUGIN packageName: ${pluginOptions.packageName}
36
- PLUGIN origin: ${pluginOptions.origin}
37
- PLUGIN pinnedVersion: ${pluginOptions.pinnedVersion}
38
- PLUGIN pluginPath: ${pluginOptions.pluginPath}
39
- ---
40
- loadedFrom: ${loadedFrom}
41
- currentNodeVersion: ${currentNodeVersion}
42
- execPath: ${execPath}
43
- userNodeVersion: ${userNodeVersion}
44
- nodePath: ${nodePath}
45
-
46
-
47
- `);
48
31
  return (loadedFrom === 'local' || loadedFrom === 'package.json') &&
49
32
  semver.satisfies(userNodeVersion, MINIMUM_REQUIRED_NODE_VERSION)
50
33
  ? { ...pluginOptions, nodePath, nodeVersion: userNodeVersion }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/build",
3
- "version": "29.0.3-rc.0",
3
+ "version": "29.0.4",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./lib/core/main.js",
@@ -67,7 +67,7 @@
67
67
  "@netlify/cache-utils": "^5.0.2",
68
68
  "@netlify/config": "^20.0.2",
69
69
  "@netlify/edge-bundler": "5.5.0",
70
- "@netlify/functions-utils": "^5.0.5",
70
+ "@netlify/functions-utils": "^5.0.6",
71
71
  "@netlify/git-utils": "^5.0.2",
72
72
  "@netlify/plugins-list": "^6.59.0",
73
73
  "@netlify/run-utils": "^5.0.2",
@@ -148,5 +148,6 @@
148
148
  "compilerOptions": {
149
149
  "module": "commonjs"
150
150
  }
151
- }
151
+ },
152
+ "gitHead": "b33663b6af4bd9acb552af1d17673679acb2ef75"
152
153
  }