@postgres-language-server/cli 0.19.0 → 0.20.1
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 +1 -0
- package/bin/postgres-language-server +1 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ The following features are implemented:
|
|
|
26
26
|
- Syntax Error Highlighting
|
|
27
27
|
- Type-checking (via `EXPLAIN` error insights)
|
|
28
28
|
- Linter, inspired by [Squawk](https://squawkhq.com)
|
|
29
|
+
- Formatting
|
|
29
30
|
|
|
30
31
|
Our current focus is on refining and enhancing these core features while building a robust and easily accessible infrastructure. For future plans and opportunities to contribute, please check out the issues and discussions. Any contributions are welcome!
|
|
31
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postgres-language-server/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"bin": {
|
|
5
5
|
"postgres-language-server": "bin/postgres-language-server"
|
|
6
6
|
},
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"provenance": true
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@postgres-language-server/cli-x86_64-windows-msvc": "0.
|
|
38
|
-
"@postgres-language-server/cli-aarch64-windows-msvc": "0.
|
|
39
|
-
"@postgres-language-server/cli-x86_64-apple-darwin": "0.
|
|
40
|
-
"@postgres-language-server/cli-aarch64-apple-darwin": "0.
|
|
41
|
-
"@postgres-language-server/cli-x86_64-linux-gnu": "0.
|
|
42
|
-
"@postgres-language-server/cli-aarch64-linux-gnu": "0.
|
|
43
|
-
"@postgres-language-server/cli-x86_64-linux-musl": "0.
|
|
37
|
+
"@postgres-language-server/cli-x86_64-windows-msvc": "0.20.1",
|
|
38
|
+
"@postgres-language-server/cli-aarch64-windows-msvc": "0.20.1",
|
|
39
|
+
"@postgres-language-server/cli-x86_64-apple-darwin": "0.20.1",
|
|
40
|
+
"@postgres-language-server/cli-aarch64-apple-darwin": "0.20.1",
|
|
41
|
+
"@postgres-language-server/cli-x86_64-linux-gnu": "0.20.1",
|
|
42
|
+
"@postgres-language-server/cli-aarch64-linux-gnu": "0.20.1",
|
|
43
|
+
"@postgres-language-server/cli-x86_64-linux-musl": "0.20.1"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"test": "bun test"
|