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.
- package/.turbo/turbo-build.log +9 -0
- package/.vscodeignore +8 -0
- package/LICENSE.txt +5 -0
- package/README.md +21 -0
- package/dist/extension.js +18055 -0
- package/dist/extension.js.map +7 -0
- package/dist/lsp-server.js +14656 -0
- package/dist/lsp-server.js.map +7 -0
- package/language-configuration.json +24 -0
- package/package.json +70 -0
- package/scripts/build.mjs +43 -0
- package/snippets/dql.json +62 -0
- package/src/extension.ts +39 -0
- package/syntaxes/dql.tmLanguage.json +92 -0
- package/tsconfig.json +17 -0
|
@@ -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
package/LICENSE.txt
ADDED
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.
|