squawk-cli 2.0.0 → 2.1.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -276,10 +276,10 @@ $ nix develop
276
276
 
277
277
  ### Adding a New Rule
278
278
 
279
- When adding a new rule, the `s/new-rule` script will create stubs for your rule in Rust and in Documentation site.
279
+ When adding a new rule, running `cargo xtask new-rule` will create stubs for your rule in the Rust crate and in Documentation site.
280
280
 
281
281
  ```bash
282
- s/new-rule 'prefer big serial'
282
+ cargo xtask new-rule 'prefer big serial'
283
283
  ```
284
284
 
285
285
  ### Releasing a New Version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squawk-cli",
3
- "version": "2.0.0",
3
+ "version": "2.1.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>",
@@ -25,7 +25,6 @@
25
25
  "@typescript-eslint/parser": "^3.3.0",
26
26
  "eslint": "^7.2.0",
27
27
  "eslint-plugin-import": "^2.21.2",
28
- "plop": "^3.1.2",
29
28
  "prettier": "^2.0.5",
30
29
  "typescript": "^3.9.5"
31
30
  },