squawk-cli 1.2.0 → 1.5.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/README.md CHANGED
@@ -13,13 +13,12 @@ Also it seemed like a nice project to spend more time with Rust.
13
13
 
14
14
  ## Install
15
15
 
16
- Note: due to `squawk`'s dependency on
17
- [`libpg_query`](https://github.com/lfittl/libpg_query/issues/44), `squawk`
18
- supports Linux, macOS and Windows
19
-
20
16
  ```shell
21
17
  npm install -g squawk-cli
22
18
 
19
+ # or via PYPI
20
+ pip install squawk-cli
21
+
23
22
  # or install binaries directly via the releases page
24
23
  https://github.com/sbdchd/squawk/releases
25
24
  ```
package/js/install.js CHANGED
@@ -50,6 +50,7 @@ const SUPPORTED_PLATFORMS = new Set([
50
50
  "darwin-x64",
51
51
  "darwin-arm64",
52
52
  "linux-x64",
53
+ "linux-arm64",
53
54
  "win32-x64",
54
55
  ])
55
56
  const BINARY_NAME_OVERRIDE = new Map([["win32-x64", "squawk-windows-x64.exe"]])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squawk-cli",
3
- "version": "1.2.0",
3
+ "version": "1.5.0",
4
4
  "description": "linter for PostgreSQL, focused on migrations",
5
5
  "repository": "git@github.com:sbdchd/squawk.git",
6
6
  "author": "Steve Dignam <steve@dignam.xyz>",