@vercel/build-utils 6.7.2 → 6.7.3

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/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @vercel/build-utils
2
+
3
+ ## 6.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Deprecate Node.js 14.x and 16.x with warning ([#9976](https://github.com/vercel/vercel/pull/9976))
@@ -10,8 +10,18 @@ const debug_1 = __importDefault(require("../debug"));
10
10
  function getOptions() {
11
11
  const options = [
12
12
  { major: 18, range: '18.x', runtime: 'nodejs18.x' },
13
- { major: 16, range: '16.x', runtime: 'nodejs16.x' },
14
- { major: 14, range: '14.x', runtime: 'nodejs14.x' },
13
+ {
14
+ major: 16,
15
+ range: '16.x',
16
+ runtime: 'nodejs16.x',
17
+ discontinueDate: new Date('2023-08-15'),
18
+ },
19
+ {
20
+ major: 14,
21
+ range: '14.x',
22
+ runtime: 'nodejs14.x',
23
+ discontinueDate: new Date('2023-08-15'),
24
+ },
15
25
  {
16
26
  major: 12,
17
27
  range: '12.x',