@postgres-language-server/cli 0.18.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 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
 
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  const { platform, arch, env } = process;
3
+ const { execSync } = require("child_process");
3
4
 
4
5
  const PLATFORMS = {
5
6
  win32: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postgres-language-server/cli",
3
- "version": "0.18.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.18.0",
38
- "@postgres-language-server/cli-aarch64-windows-msvc": "0.18.0",
39
- "@postgres-language-server/cli-x86_64-apple-darwin": "0.18.0",
40
- "@postgres-language-server/cli-aarch64-apple-darwin": "0.18.0",
41
- "@postgres-language-server/cli-x86_64-linux-gnu": "0.18.0",
42
- "@postgres-language-server/cli-aarch64-linux-gnu": "0.18.0",
43
- "@postgres-language-server/cli-x86_64-linux-musl": "0.18.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"