@vibe-validate/git 0.9.9 → 0.9.11

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Jeff Dutton
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -14,14 +14,18 @@
14
14
  * Get deterministic git tree hash representing current working tree state
15
15
  *
16
16
  * Implementation:
17
- * 1. Mark untracked files with --intent-to-add (no actual staging)
18
- * 2. Calculate tree hash with git write-tree (content-based, no timestamps)
19
- * 3. Reset index to clean state (no side effects)
17
+ * 1. Create temporary index file (doesn't affect real index)
18
+ * 2. Copy current index to temporary index
19
+ * 3. Mark untracked files with --intent-to-add in temp index
20
+ * 4. Calculate tree hash with git write-tree using temp index
21
+ * 5. Clean up temp index file
20
22
  *
21
23
  * Why this is better than git stash create:
22
24
  * - git stash create: includes timestamps in commit → different hash each time
23
25
  * - git write-tree: content-based only → same content = same hash (deterministic)
24
26
  *
27
+ * CRITICAL: Uses GIT_INDEX_FILE to avoid corrupting real index during git commit hooks
28
+ *
25
29
  * @returns Git tree SHA-1 hash (40 hex characters)
26
30
  * @throws Error if not in a git repository or git command fails
27
31
  */
@@ -1 +1 @@
1
- {"version":3,"file":"tree-hash.d.ts","sourceRoot":"","sources":["../src/tree-hash.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAWH;;;;;;;;;;;;;;GAcG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,MAAM,CAAC,CA6CtD;AAED;;;;;;;GAOG;AACH,wBAAsB,eAAe,IAAI,OAAO,CAAC,MAAM,CAAC,CAQvD;AAED;;;;GAIG;AACH,wBAAsB,qBAAqB,IAAI,OAAO,CAAC,OAAO,CAAC,CAS9D"}
1
+ {"version":3,"file":"tree-hash.d.ts","sourceRoot":"","sources":["../src/tree-hash.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAWH;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,MAAM,CAAC,CA+DtD;AAED;;;;;;;GAOG;AACH,wBAAsB,eAAe,IAAI,OAAO,CAAC,MAAM,CAAC,CAQvD;AAED;;;;GAIG;AACH,wBAAsB,qBAAqB,IAAI,OAAO,CAAC,OAAO,CAAC,CAS9D"}
package/dist/tree-hash.js CHANGED
@@ -21,14 +21,18 @@ const GIT_OPTIONS = {
21
21
  * Get deterministic git tree hash representing current working tree state
22
22
  *
23
23
  * Implementation:
24
- * 1. Mark untracked files with --intent-to-add (no actual staging)
25
- * 2. Calculate tree hash with git write-tree (content-based, no timestamps)
26
- * 3. Reset index to clean state (no side effects)
24
+ * 1. Create temporary index file (doesn't affect real index)
25
+ * 2. Copy current index to temporary index
26
+ * 3. Mark untracked files with --intent-to-add in temp index
27
+ * 4. Calculate tree hash with git write-tree using temp index
28
+ * 5. Clean up temp index file
27
29
  *
28
30
  * Why this is better than git stash create:
29
31
  * - git stash create: includes timestamps in commit → different hash each time
30
32
  * - git write-tree: content-based only → same content = same hash (deterministic)
31
33
  *
34
+ * CRITICAL: Uses GIT_INDEX_FILE to avoid corrupting real index during git commit hooks
35
+ *
32
36
  * @returns Git tree SHA-1 hash (40 hex characters)
33
37
  * @throws Error if not in a git repository or git command fails
34
38
  */
@@ -36,30 +40,47 @@ export async function getGitTreeHash() {
36
40
  try {
37
41
  // Check if we're in a git repository
38
42
  execSync('git rev-parse --is-inside-work-tree', GIT_OPTIONS);
39
- // Step 1: Mark all untracked files with --intent-to-add
40
- // This adds them to the index WITHOUT staging their content
41
- // --force: include ignored files for complete state tracking
43
+ // Get git directory and create temp index path
44
+ const gitDir = execSync('git rev-parse --git-dir', GIT_OPTIONS).trim();
45
+ const tempIndexFile = `${gitDir}/vibe-validate-temp-index`;
42
46
  try {
43
- execSync('git add --intent-to-add --all --force', {
47
+ // Step 1: Copy current index to temp index
48
+ const currentIndex = `${gitDir}/index`;
49
+ execSync(`cp "${currentIndex}" "${tempIndexFile}"`, GIT_OPTIONS);
50
+ // Step 2: Use temp index for all operations (doesn't affect real index)
51
+ const tempIndexOptions = {
44
52
  ...GIT_OPTIONS,
45
- stdio: ['pipe', 'pipe', 'pipe'] // Capture stderr for error handling
46
- });
53
+ env: { ...process.env, GIT_INDEX_FILE: tempIndexFile }
54
+ };
55
+ // Step 3: Mark all untracked files with --intent-to-add in temp index
56
+ try {
57
+ execSync('git add --intent-to-add --all --force', {
58
+ ...tempIndexOptions,
59
+ stdio: ['pipe', 'pipe', 'pipe'] // Capture stderr for error handling
60
+ });
61
+ }
62
+ catch (addError) {
63
+ // If no untracked files, git add fails with "nothing to add"
64
+ // This is fine - just means we only have tracked files
65
+ const errorMessage = addError instanceof Error ? addError.message : String(addError);
66
+ if (!errorMessage.includes('nothing')) {
67
+ // Real error - re-throw
68
+ throw addError;
69
+ }
70
+ }
71
+ // Step 4: Get tree hash using temp index (content-based, no timestamps)
72
+ const treeHash = execSync('git write-tree', tempIndexOptions).trim();
73
+ return treeHash;
47
74
  }
48
- catch (addError) {
49
- // If no untracked files, git add fails with "nothing to add"
50
- // This is fine - just means we only have tracked files
51
- const errorMessage = addError instanceof Error ? addError.message : String(addError);
52
- if (!errorMessage.includes('nothing')) {
53
- // Real error - re-throw
54
- throw addError;
75
+ finally {
76
+ // Step 5: Always clean up temp index file
77
+ try {
78
+ execSync(`rm -f "${tempIndexFile}"`, GIT_OPTIONS);
79
+ }
80
+ catch (_cleanupError) {
81
+ // Ignore cleanup errors - temp file cleanup is best effort
55
82
  }
56
83
  }
57
- // Step 2: Get tree hash (content-based, no timestamps)
58
- const treeHash = execSync('git write-tree', GIT_OPTIONS).trim();
59
- // Step 3: Reset index to clean state (remove intent-to-add marks)
60
- // This ensures no side effects from our hash calculation
61
- execSync('git reset', GIT_OPTIONS);
62
- return treeHash;
63
84
  }
64
85
  catch (error) {
65
86
  // Handle not-in-git-repo case
@@ -1 +1 @@
1
- {"version":3,"file":"tree-hash.js","sourceRoot":"","sources":["../src/tree-hash.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tree-hash.js","sourceRoot":"","sources":["../src/tree-hash.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-validate/git",
3
- "version": "0.9.9",
3
+ "version": "0.9.11",
4
4
  "description": "Git utilities for vibe-validate - tree hash calculation, branch sync, and post-merge cleanup",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -16,12 +16,6 @@
16
16
  "README.md",
17
17
  "LICENSE"
18
18
  ],
19
- "scripts": {
20
- "build": "tsc",
21
- "clean": "rm -rf dist",
22
- "test": "vitest run",
23
- "test:watch": "vitest"
24
- },
25
19
  "keywords": [
26
20
  "git",
27
21
  "validation",
@@ -47,5 +41,11 @@
47
41
  "@types/node": "^22.0.0",
48
42
  "typescript": "^5.6.0",
49
43
  "vitest": "^2.0.0"
44
+ },
45
+ "scripts": {
46
+ "build": "tsc",
47
+ "clean": "rm -rf dist",
48
+ "test": "vitest run",
49
+ "test:watch": "vitest"
50
50
  }
51
- }
51
+ }