@goodfoot/git-mesh 1.0.80 → 1.0.82
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 +1 -1
- package/man/git-mesh.1 +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# git mesh
|
|
2
2
|
|
|
3
|
-
`git mesh` tracks implicit semantic dependencies in a git repository — line-range or whole-file anchors that participate in a coupling no schema, type, or test enforces. Each mesh names its anchors, carries a `why` sentence defining the subsystem they collectively form, and surfaces drift via `git mesh stale` when those anchors diverge from their anchored state.
|
|
3
|
+
`git mesh` tracks implicit semantic dependencies in a git repository — line-range or whole-file anchors that participate in a coupling no schema, type, or test enforces. Each mesh names its anchors, optionally carries a `why` sentence defining the subsystem they collectively form (recommended on every mesh), and surfaces drift via `git mesh stale` when those anchors diverge from their anchored state.
|
|
4
4
|
|
|
5
5
|
The primary CLI surface lives in `src/cli/mod.rs`. Run `git mesh --help` or `git mesh stale --help` for flag reference.
|
|
6
6
|
|
package/man/git-mesh.1
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.ie \n(.g .ds Aq \(aq
|
|
2
2
|
.el .ds Aq '
|
|
3
|
-
.TH git-mesh 1 "git-mesh 1.0.
|
|
3
|
+
.TH git-mesh 1 "git-mesh 1.0.82"
|
|
4
4
|
.ie \n(.g .ds Aq \(aq
|
|
5
5
|
.el .ds Aq '
|
|
6
6
|
.SH NAME
|
|
@@ -123,7 +123,7 @@ Print this message or the help of the given subcommand(s)
|
|
|
123
123
|
.ie \n(.g .ds Aq \(aq
|
|
124
124
|
.el .ds Aq '
|
|
125
125
|
.SH VERSION
|
|
126
|
-
v1.0.
|
|
126
|
+
v1.0.82
|
|
127
127
|
.SH EXAMPLES
|
|
128
128
|
Anchor a new mesh alongside a code change:
|
|
129
129
|
.PP
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goodfoot/git-mesh",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.82",
|
|
4
4
|
"bin": "bin/git-mesh.exe",
|
|
5
5
|
"man": [
|
|
6
6
|
"man/git-mesh.1"
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"scripts/postinstall.js"
|
|
24
24
|
],
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@goodfoot/git-mesh-darwin-arm64": "1.0.
|
|
27
|
-
"@goodfoot/git-mesh-darwin-x64": "1.0.
|
|
28
|
-
"@goodfoot/git-mesh-linux-arm64": "1.0.
|
|
29
|
-
"@goodfoot/git-mesh-linux-x64": "1.0.
|
|
30
|
-
"@goodfoot/git-mesh-win32-x64": "1.0.
|
|
26
|
+
"@goodfoot/git-mesh-darwin-arm64": "1.0.82",
|
|
27
|
+
"@goodfoot/git-mesh-darwin-x64": "1.0.82",
|
|
28
|
+
"@goodfoot/git-mesh-linux-arm64": "1.0.82",
|
|
29
|
+
"@goodfoot/git-mesh-linux-x64": "1.0.82",
|
|
30
|
+
"@goodfoot/git-mesh-win32-x64": "1.0.82"
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|