@datacore-one/cli 1.0.8 → 1.0.9
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8502,7 +8502,7 @@ function checkNode(platform2) {
|
|
|
8502
8502
|
if (installed) {
|
|
8503
8503
|
version = getVersion("node", "-v");
|
|
8504
8504
|
const major = parseInt(version?.replace("v", "").split(".")[0] ?? "0", 10);
|
|
8505
|
-
meetsMin = major >=
|
|
8505
|
+
meetsMin = major >= 20;
|
|
8506
8506
|
}
|
|
8507
8507
|
return {
|
|
8508
8508
|
name: "node",
|
|
@@ -11013,7 +11013,7 @@ async function initDatacore(options = {}) {
|
|
|
11013
11013
|
}
|
|
11014
11014
|
|
|
11015
11015
|
// src/index.ts
|
|
11016
|
-
var VERSION = "1.0.
|
|
11016
|
+
var VERSION = "1.0.9";
|
|
11017
11017
|
var args = process.argv.slice(2);
|
|
11018
11018
|
var parsed = parseArgs(args);
|
|
11019
11019
|
async function handleMeta(command, cmdArgs, flags, format) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datacore-one/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "CLI for setting up and managing Datacore installations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"prepublishOnly": "bun run build"
|
|
21
21
|
},
|
|
22
22
|
"engines": {
|
|
23
|
-
"node": ">=
|
|
23
|
+
"node": ">=20"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"datacore",
|