dql-language-support 0.8.12

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.
@@ -0,0 +1,9 @@
1
+
2
+ > dql-language-support@0.8.12 build /Users/Kranthi_1/DuckCode-DQL/DQL/dql/apps/vscode-extension
3
+ > pnpm run typecheck && node ./scripts/build.mjs
4
+
5
+
6
+ > dql-language-support@0.8.12 typecheck /Users/Kranthi_1/DuckCode-DQL/DQL/dql/apps/vscode-extension
7
+ > tsc -p . --noEmit
8
+
9
+ [dql-vscode-extension] build complete
package/.vscodeignore ADDED
@@ -0,0 +1,8 @@
1
+ **/.git/**
2
+ **/.turbo/**
3
+ **/src/**
4
+ **/scripts/**
5
+ **/tsconfig.json
6
+ **/*.tsbuildinfo
7
+ **/*.map
8
+ pnpm-lock.yaml
package/LICENSE.txt ADDED
@@ -0,0 +1,5 @@
1
+ Apache-2.0
2
+
3
+ See the repository root `LICENSE` file for the full license text.
4
+
5
+ This package is not licensed for public redistribution.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # DQL Language Support
2
+
3
+ VS Code extension for DQL with:
4
+
5
+ - Syntax highlighting for DQL files (`.dql`)
6
+ - Snippets for dashboards, workbooks, and blocks
7
+ - Language Server support (diagnostics, completion, hover, formatting)
8
+
9
+ ## Development
10
+
11
+ ```bash
12
+ pnpm --filter dql-language-support build
13
+ ```
14
+
15
+ ## Packaging
16
+
17
+ ```bash
18
+ pnpm --filter dql-language-support package
19
+ ```
20
+
21
+ This generates a `.vsix` artifact that can be installed in VS Code.