amont 1.26.0 → 1.28.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 +2 -0
- 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.
|
|
3
|
+
"version": "1.28.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.
|
|
36
|
-
"@amont-hooks/darwin-x64": "1.
|
|
37
|
-
"@amont-hooks/linux-arm64-gnu": "1.
|
|
38
|
-
"@amont-hooks/linux-x64-gnu": "1.
|
|
39
|
-
"@amont-hooks/linux-x64-musl": "1.
|
|
40
|
-
"@amont-hooks/win32-x64": "1.
|
|
35
|
+
"@amont-hooks/darwin-arm64": "1.28.0",
|
|
36
|
+
"@amont-hooks/darwin-x64": "1.28.0",
|
|
37
|
+
"@amont-hooks/linux-arm64-gnu": "1.28.0",
|
|
38
|
+
"@amont-hooks/linux-x64-gnu": "1.28.0",
|
|
39
|
+
"@amont-hooks/linux-x64-musl": "1.28.0",
|
|
40
|
+
"@amont-hooks/win32-x64": "1.28.0"
|
|
41
41
|
}
|
|
42
42
|
}
|