@goodfoot/claude-code-hooks 1.0.16 → 1.0.17

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/dist/cli.js +3 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -382,9 +382,9 @@ async function discoverHookFiles(pattern, cwd) {
382
382
  async function compileHook(options) {
383
383
  const { sourcePath, logFilePath } = options;
384
384
  // Create a temporary wrapper file that imports the hook and executes it
385
- // Use system temp directory with deterministic name based on all inputs that affect output
386
- // This ensures the same inputs always produce the same temp path, making builds deterministic
387
- const hashInputs = [sourcePath, logFilePath ?? ""].join(":");
385
+ // Use system temp directory with deterministic name based on hook basename (not full path)
386
+ // This ensures builds are reproducible across different environments/machines
387
+ const hashInputs = [path.basename(sourcePath), logFilePath ? "log" : ""].join(":");
388
388
  const buildHash = crypto.createHash("sha256").update(hashInputs).digest("hex").substring(0, 16);
389
389
  const tempDir = path.join(os.tmpdir(), "claude-code-hooks-build", buildHash);
390
390
  const wrapperPath = path.join(tempDir, "wrapper.ts");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodfoot/claude-code-hooks",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Type-safe Claude Code hooks library with camelCase types and output builders",
5
5
  "homepage": "https://github.com/goodfoot-io/marketplace/tree/main/packages/claude-code-hooks",
6
6
  "repository": {