create-dql-app 1.7.0 → 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.
@@ -153,7 +153,7 @@ async function main() {
153
153
 
154
154
  if (dbtSibling) {
155
155
  console.log(c.dim(` detected sibling dbt project at ${dbtSibling}`));
156
- console.log(c.dim(` wired into dql.config.json — run 'dql sync dbt' to import\n`));
156
+ console.log(c.dim(` wired into dql.config.json — run the generated 'sync' npm script to import\n`));
157
157
  }
158
158
 
159
159
  // Best-effort: `git init` for a clean first commit — but never nest a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-dql-app",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "description": "Scaffold a new DQL project. Run with: npx create-dql-app <name>",
5
5
  "license": "MIT",
6
6
  "author": "DuckCode AI Labs",
@@ -12,7 +12,7 @@ The core path is:
12
12
  source data -> DQL block -> business_view -> dashboard/app/AI answer
13
13
  ```
14
14
 
15
- Run `dql compile .` to produce `dql-manifest.json`, the local manifest that
15
+ Run `npm run compile` to produce `dql-manifest.json`, the local manifest that
16
16
  connects technical lineage with business lineage.
17
17
 
18
18
  ## Connect your warehouse
@@ -11,7 +11,7 @@
11
11
  "validate": "dql validate"
12
12
  },
13
13
  "devDependencies": {
14
- "@duckcodeailabs/dql-cli": "^1.7.0"
14
+ "@duckcodeailabs/dql-cli": "^1.7.2"
15
15
  },
16
16
  "engines": {
17
17
  "node": ">=20"