@nx-extend/vercel 14.0.0 → 15.0.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/CHANGELOG.md CHANGED
@@ -1,4 +1,23 @@
1
1
 
2
+ # [15.0.0](https://github.com/tripss/nx-extend/compare/vercel@14.0.0...vercel@15.0.0) (2025-12-22)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **vercel:** Add support for Node.js v20 in the Vercel build executor schema ([c80fa22](https://github.com/tripss/nx-extend/commit/c80fa2244d7d429e6250c7e60d6b6b0eb2218fa4))
8
+
9
+
10
+ ### Features
11
+
12
+ * **vercel:** Add support for Node.js v24 in Vercel build executor ([e25f93b](https://github.com/tripss/nx-extend/commit/e25f93b0830026e129d4c01627ce0e28e715ac82))
13
+
14
+
15
+ ### BREAKING CHANGES
16
+
17
+ * **vercel:** Default node version is set to `24.x`, `20.x` is removed.
18
+
19
+
20
+
2
21
  # [14.0.0](https://github.com/tripss/nx-extend/compare/vercel@13.0.1...vercel@14.0.0) (2025-11-23)
3
22
 
4
23
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx-extend/vercel",
3
- "version": "14.0.0",
3
+ "version": "15.0.0",
4
4
  "keywords": [
5
5
  "nx",
6
6
  "vercel"
@@ -26,7 +26,7 @@
26
26
  "@nx-extend/core": "10.0.0",
27
27
  "tslib": "2.8.1"
28
28
  },
29
- "packageManager": "yarn@4.9.4",
29
+ "packageManager": "yarn@4.12.0",
30
30
  "types": "./src/index.d.ts",
31
31
  "type": "commonjs"
32
32
  }
@@ -6,7 +6,7 @@ export interface BuildOptions {
6
6
  buildTarget?: string;
7
7
  framework?: string;
8
8
  outputPath?: string;
9
- nodeVersion?: '20.x' | '22.x';
9
+ nodeVersion?: '20.x' | '22.x' | '24.x';
10
10
  config?: string;
11
11
  deployment?: 'preview' | 'production';
12
12
  }
@@ -79,7 +79,7 @@ function buildExecutor(options, context) {
79
79
  outputDirectory: (0, get_output_directory_1.getOutputDirectory)(framework, outputDirectory),
80
80
  rootDirectory: null,
81
81
  directoryListing: false,
82
- nodeVersion: options.nodeVersion || '22.x'
82
+ nodeVersion: options.nodeVersion || '24.x'
83
83
  }
84
84
  });
85
85
  const { success } = (0, core_1.execCommand)((0, core_1.buildCommand)([
@@ -25,7 +25,7 @@ export interface BuildOptions {
25
25
  buildTarget?: string
26
26
  framework?: string
27
27
  outputPath?: string
28
- nodeVersion?: '20.x' | '22.x'
28
+ nodeVersion?: '20.x' | '22.x' | '24.x'
29
29
  config?: string
30
30
  deployment?: 'preview' | 'production'
31
31
  }
@@ -118,7 +118,7 @@ export function buildExecutor(
118
118
  outputDirectory: getOutputDirectory(framework, outputDirectory),
119
119
  rootDirectory: null,
120
120
  directoryListing: false,
121
- nodeVersion: options.nodeVersion || '22.x'
121
+ nodeVersion: options.nodeVersion || '24.x'
122
122
  }
123
123
  })
124
124
 
@@ -33,7 +33,8 @@
33
33
  "description": "What version of node to configure",
34
34
  "enum": [
35
35
  "20.x",
36
- "22.x"
36
+ "22.x",
37
+ "24.x"
37
38
  ]
38
39
  },
39
40
  "deployment": {