@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 +14 -2
- package/dist/assets/dql-notebook/assets/{index-4DbeLWHA.js → index-BgD9b9Om.js} +363 -370
- package/dist/assets/dql-notebook/index.html +1 -1
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +43 -10
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +7 -4
- package/dist/commands/init.js.map +1 -1
- package/dist/local-runtime.d.ts +2 -0
- package/dist/local-runtime.d.ts.map +1 -1
- package/dist/local-runtime.js +147 -29
- package/dist/local-runtime.js.map +1 -1
- package/dist/npm-runtime.d.ts +24 -0
- package/dist/npm-runtime.d.ts.map +1 -0
- package/dist/npm-runtime.js +72 -0
- package/dist/npm-runtime.js.map +1 -0
- package/dist/package.json +10 -10
- package/dist/settings/provider-settings.d.ts +2 -0
- package/dist/settings/provider-settings.d.ts.map +1 -1
- package/dist/settings/provider-settings.js +16 -7
- package/dist/settings/provider-settings.js.map +1 -1
- package/package.json +10 -10
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
|
-
|
|
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:
|