@cedarjs/cli 1.0.0-canary.12753 → 1.0.0-canary.12755
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.
|
@@ -4,9 +4,8 @@ function checkNodeVersion() {
|
|
|
4
4
|
const checks = { ok: true };
|
|
5
5
|
const pVersion = process.version;
|
|
6
6
|
const pVersionC = semver.clean(pVersion);
|
|
7
|
-
const LOWER_BOUND = "
|
|
8
|
-
|
|
9
|
-
if (semver.gt(pVersionC, LOWER_BOUND_C)) {
|
|
7
|
+
const LOWER_BOUND = "v24.0.0";
|
|
8
|
+
if (semver.gte(pVersionC, LOWER_BOUND)) {
|
|
10
9
|
return checks;
|
|
11
10
|
}
|
|
12
11
|
checks.ok = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12755+317ae1f63",
|
|
4
4
|
"description": "The CedarJS Command Line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/preset-typescript": "7.27.1",
|
|
33
33
|
"@babel/runtime-corejs3": "7.27.6",
|
|
34
|
-
"@cedarjs/api-server": "1.0.0-canary.
|
|
35
|
-
"@cedarjs/cli-helpers": "1.0.0-canary.
|
|
36
|
-
"@cedarjs/fastify-web": "1.0.0-canary.
|
|
37
|
-
"@cedarjs/internal": "1.0.0-canary.
|
|
38
|
-
"@cedarjs/prerender": "1.0.0-canary.
|
|
39
|
-
"@cedarjs/project-config": "1.0.0-canary.
|
|
40
|
-
"@cedarjs/structure": "1.0.0-canary.
|
|
41
|
-
"@cedarjs/telemetry": "1.0.0-canary.
|
|
42
|
-
"@cedarjs/web-server": "1.0.0-canary.
|
|
34
|
+
"@cedarjs/api-server": "1.0.0-canary.12755",
|
|
35
|
+
"@cedarjs/cli-helpers": "1.0.0-canary.12755",
|
|
36
|
+
"@cedarjs/fastify-web": "1.0.0-canary.12755",
|
|
37
|
+
"@cedarjs/internal": "1.0.0-canary.12755",
|
|
38
|
+
"@cedarjs/prerender": "1.0.0-canary.12755",
|
|
39
|
+
"@cedarjs/project-config": "1.0.0-canary.12755",
|
|
40
|
+
"@cedarjs/structure": "1.0.0-canary.12755",
|
|
41
|
+
"@cedarjs/telemetry": "1.0.0-canary.12755",
|
|
42
|
+
"@cedarjs/web-server": "1.0.0-canary.12755",
|
|
43
43
|
"@listr2/prompt-adapter-enquirer": "2.0.16",
|
|
44
44
|
"@opentelemetry/api": "1.8.0",
|
|
45
45
|
"@opentelemetry/core": "1.22.0",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"publishConfig": {
|
|
102
102
|
"access": "public"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "317ae1f6336d4cc889cc4fac181015be0657e2e9"
|
|
105
105
|
}
|