@netlify/build 35.14.0 → 35.15.0-eos2
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.
|
@@ -6,7 +6,7 @@ import { logWarning, logWarningSubHeader } from '../log/logger.js';
|
|
|
6
6
|
* This node version is minimum required to run the plugins code.
|
|
7
7
|
* If the users preferred Node.js version is below that we have to fall back to the system node version
|
|
8
8
|
*/
|
|
9
|
-
const MINIMUM_REQUIRED_NODE_VERSION = '>=
|
|
9
|
+
const MINIMUM_REQUIRED_NODE_VERSION = '>=22.12.0';
|
|
10
10
|
/**
|
|
11
11
|
* Local plugins and `package.json`-installed plugins use user's preferred Node.js version if higher than our minimum
|
|
12
12
|
* supported version. Else default to the system Node version.
|
|
@@ -38,6 +38,6 @@ const addPluginNodeVersion = async function ({ pluginOptions, pluginOptions: { l
|
|
|
38
38
|
logWarningSubHeader(logs, `Warning: ${packageName} will be executed with Node.js version ${currentNodeVersion}`);
|
|
39
39
|
logWarning(logs, ` The plugin cannot be executed with your defined Node.js version ${userNodeVersion}
|
|
40
40
|
|
|
41
|
-
Read more about our minimum required version in our ${link('forums announcement', 'https://answers.netlify.com/t/build-plugins-end-of-support-for-node-js-
|
|
41
|
+
Read more about our minimum required version in our ${link('forums announcement', 'https://answers.netlify.com/t/build-plugins-end-of-support-for-node-js-18-node-js-20/162662')}`);
|
|
42
42
|
return systemNode;
|
|
43
43
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/build",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.15.0-eos2",
|
|
4
4
|
"description": "Netlify build module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/index.js",
|
|
@@ -150,7 +150,6 @@
|
|
|
150
150
|
}
|
|
151
151
|
},
|
|
152
152
|
"engines": {
|
|
153
|
-
"node": ">=
|
|
154
|
-
}
|
|
155
|
-
"gitHead": "dc4e6c79ae03de4070f706c936ed7e177d8ffec3"
|
|
153
|
+
"node": ">=22.12.0"
|
|
154
|
+
}
|
|
156
155
|
}
|