amont 1.27.0 → 1.29.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 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -176,6 +176,8 @@ amont run --all-files # does my working tree pass? (git ls-files)
176
176
  amont check src/main.rs # what is wrong with these FILES — no index, no
177
177
  # staging; `file:line: message` an editor can parse
178
178
  amont list # what would run here, and why not
179
+ amont rehearse --wait # the push gate on a snapshot of HEAD, before
180
+ # git opens a connection — the push then skips it
179
181
  amont restore # bring back unstaged work a killed hook parked
180
182
  ```
181
183
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amont",
3
- "version": "1.27.0",
3
+ "version": "1.29.0",
4
4
  "description": "Opinionated git hooks that judge what you are committing, not what is on disk",
5
5
  "keywords": [
6
6
  "git",
@@ -32,11 +32,11 @@
32
32
  "node": ">=18"
33
33
  },
34
34
  "optionalDependencies": {
35
- "@amont-hooks/darwin-arm64": "1.27.0",
36
- "@amont-hooks/darwin-x64": "1.27.0",
37
- "@amont-hooks/linux-arm64-gnu": "1.27.0",
38
- "@amont-hooks/linux-x64-gnu": "1.27.0",
39
- "@amont-hooks/linux-x64-musl": "1.27.0",
40
- "@amont-hooks/win32-x64": "1.27.0"
35
+ "@amont-hooks/darwin-arm64": "1.29.0",
36
+ "@amont-hooks/darwin-x64": "1.29.0",
37
+ "@amont-hooks/linux-arm64-gnu": "1.29.0",
38
+ "@amont-hooks/linux-x64-gnu": "1.29.0",
39
+ "@amont-hooks/linux-x64-musl": "1.29.0",
40
+ "@amont-hooks/win32-x64": "1.29.0"
41
41
  }
42
42
  }