@datacore-one/cli 1.0.9 → 1.0.11

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 CHANGED
@@ -5,13 +5,16 @@ CLI for setting up and managing Datacore installations - an AI-powered second br
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install -g @datacore-one/cli
8
+ curl -fsSL https://datacore.one/install | bash
9
9
  ```
10
10
 
11
- Or run directly with npx:
11
+ This handles everything: installs/upgrades Node.js if needed, installs the CLI, and starts the setup wizard.
12
+
13
+ Or if you already have Node.js 20+:
12
14
 
13
15
  ```bash
14
- npx @datacore-one/cli init
16
+ npm install -g @datacore-one/cli
17
+ datacore init
15
18
  ```
16
19
 
17
20
  ## Quick Start
package/dist/index.js CHANGED
@@ -11013,7 +11013,7 @@ async function initDatacore(options = {}) {
11013
11013
  }
11014
11014
 
11015
11015
  // src/index.ts
11016
- var VERSION = "1.0.9";
11016
+ var VERSION = "1.0.11";
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.9",
3
+ "version": "1.0.11",
4
4
  "description": "CLI for setting up and managing Datacore installations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",