create-dql-app 1.11.10 → 1.12.0
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/package.json
CHANGED
|
@@ -12,6 +12,12 @@ The core path is:
|
|
|
12
12
|
source data -> DQL block -> business_view -> dashboard/app/AI answer
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
Shared source includes `domains/`, `skills/`, `blocks/`, `notebooks/`, `apps/`,
|
|
16
|
+
tests, and governed learning evidence under `.dql/hints/`, `.dql/traces/`,
|
|
17
|
+
`.dql/evaluations/`, and `.dql/reviews/`. Rebuildable indexes, connectors,
|
|
18
|
+
credentials, and private state remain ignored under their granular `.dql/`
|
|
19
|
+
subdirectories. Do not broadly ignore `.dql/`.
|
|
20
|
+
|
|
15
21
|
Run `npm run compile` to produce `dql-manifest.json`, the local manifest that
|
|
16
22
|
connects technical lineage with business lineage.
|
|
17
23
|
|
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# DQL
|
|
2
|
-
.dql/
|
|
3
2
|
dql-manifest.json
|
|
4
3
|
*.run.json
|
|
4
|
+
**/.dql/runs/
|
|
5
|
+
**/.dql/cache/
|
|
6
|
+
**/.dql/imports/
|
|
7
|
+
**/.dql/local/
|
|
8
|
+
**/.dql/runtimes/
|
|
9
|
+
**/.dql/connectors/
|
|
10
|
+
**/.dql/memory/
|
|
11
|
+
**/.dql/migration-staging/
|
|
12
|
+
**/.dql/docker-starter/
|
|
13
|
+
**/.dql/oauth-credentials.json
|
|
14
|
+
**/.dql/provider-settings.json
|
|
15
|
+
**/.dql/mcp-servers.json
|
|
16
|
+
**/.dql-user-prefs.json
|
|
5
17
|
|
|
6
18
|
# Local AI agent client config generated by `dql connect`
|
|
7
19
|
.mcp.json
|