@sphyr/cli 2.0.0-beta.1 → 2.0.0-beta.2
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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -163,5 +163,5 @@ MIT
|
|
|
163
163
|
|
|
164
164
|
## Prerequisites
|
|
165
165
|
|
|
166
|
-
- `Node.js >= 22.0.0
|
|
167
|
-
- When invoking via `npx`, ensure the Node.js version in your shell
|
|
166
|
+
- `Node.js >= 22.0.0` (enforced by the package `engines` field). Node 24 (the current Active LTS) is supported and recommended. Use [nvm](https://github.com/nvm-sh/nvm) and run `nvm use` from the monorepo root to match the pinned `.nvmrc` baseline.
|
|
167
|
+
- When invoking via `npx`, ensure the Node.js version in your shell is 22 or newer — `npx` inherits the active Node version and will fail with an engines mismatch error on older releases.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphyr/cli",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Sphyr platform CLI",
|
|
6
6
|
"type": "module",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"open": "^11.0.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=22.0.0
|
|
29
|
+
"node": ">=22.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|