@duckcodeailabs/dql-cli 1.7.1 → 1.7.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 CHANGED
@@ -6,10 +6,22 @@ Use the CLI to scaffold projects, validate blocks, preview charts locally, and b
6
6
 
7
7
  ## Install
8
8
 
9
- For local preview with file/DuckDB-backed starter data, use Node 20 or 22 LTS. Node 23 is not supported for native local drivers. If you change Node versions after installing dependencies, rerun `npm install` or `pnpm install` so native modules are rebuilt for the active runtime.
9
+ Use Node 20 or newer. If you change Node versions after installing native
10
+ database drivers, reinstall those project-local dependencies for the active
11
+ runtime.
10
12
 
11
13
  ```bash
12
- npm i -D @duckcodeailabs/dql-cli
14
+ npm i -D @duckcodeailabs/dql-cli@latest
15
+ npx dql --version
16
+ ```
17
+
18
+ Project-local installation is recommended for existing repositories. npm puts
19
+ the executable in `node_modules/.bin`, so use `npx dql ...` or the repository's
20
+ `npm run ...` scripts. A bare shell command requires a global installation:
21
+
22
+ ```bash
23
+ npm i -g @duckcodeailabs/dql-cli@latest
24
+ dql --version
13
25
  ```
14
26
 
15
27
  Or run it without adding a dependency: