@netlify/build 29.0.3-rc.0 → 29.0.4-rc.0
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/log/header.js +1 -2
- package/lib/plugins/node_version.js +0 -17
- package/package.json +4 -4
package/lib/log/header.js
CHANGED
|
@@ -8,7 +8,6 @@ export const getHeader = function (message) {
|
|
|
8
8
|
const line = '─'.repeat(headerWidth + PADDING_WIDTH * 2);
|
|
9
9
|
const paddingLeft = ' '.repeat(PADDING_WIDTH);
|
|
10
10
|
const paddingRight = ' '.repeat(PADDING_WIDTH + headerWidth - messageWidth);
|
|
11
|
-
return `${
|
|
12
|
-
${paddingLeft}${message}${paddingRight}
|
|
11
|
+
return `${paddingLeft}${message}${paddingRight}
|
|
13
12
|
${line}`;
|
|
14
13
|
};
|
|
@@ -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
|
+
"version": "29.0.4-rc.0",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/core/main.js",
|
|
@@ -66,12 +66,12 @@
|
|
|
66
66
|
"@bugsnag/js": "^7.0.0",
|
|
67
67
|
"@netlify/cache-utils": "^5.0.2",
|
|
68
68
|
"@netlify/config": "^20.0.2",
|
|
69
|
-
"@netlify/edge-bundler": "5.
|
|
69
|
+
"@netlify/edge-bundler": "5.3.3",
|
|
70
70
|
"@netlify/functions-utils": "^5.0.5",
|
|
71
71
|
"@netlify/git-utils": "^5.0.2",
|
|
72
|
-
"@netlify/plugins-list": "^6.
|
|
72
|
+
"@netlify/plugins-list": "^6.58.0",
|
|
73
73
|
"@netlify/run-utils": "^5.0.2",
|
|
74
|
-
"@netlify/zip-it-and-ship-it": "^
|
|
74
|
+
"@netlify/zip-it-and-ship-it": "^7.1.3",
|
|
75
75
|
"@sindresorhus/slugify": "^2.0.0",
|
|
76
76
|
"ansi-escapes": "^5.0.0",
|
|
77
77
|
"chalk": "^5.0.0",
|