@tanstack/create 0.63.7 → 0.63.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @tanstack/create
2
2
 
3
+ ## 0.63.8
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(cli): require Node.js >=20 and surface a clear error on older runtimes ([#438](https://github.com/TanStack/cli/pull/438))
8
+
9
+ Older Node versions (e.g. Node 16) lack `events.addAbortListener`, which is
10
+ used transitively by the CLI. Running on those versions produced a cryptic
11
+ `SyntaxError: ... does not provide an export named 'addAbortListener'` during
12
+ module instantiation. Both packages now declare `engines.node: ">=20"` so
13
+ package managers warn at install time, and the CLI bin performs an early
14
+ runtime check that prints an actionable message before any modules load.
15
+
16
+ Closes #433
17
+
3
18
  ## 0.63.7
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/create",
3
- "version": "0.63.7",
3
+ "version": "0.63.8",
4
4
  "description": "TanStack Application Builder Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,6 +22,9 @@
22
22
  ],
23
23
  "author": "Jack Herrington <jherr@pobox.com>",
24
24
  "license": "MIT",
25
+ "engines": {
26
+ "node": ">=20"
27
+ },
25
28
  "dependencies": {
26
29
  "ejs": "^3.1.10",
27
30
  "execa": "^9.5.2",