bun-git-hooks 0.3.0 → 0.3.1

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/bin/cli.js +1 -1
  2. package/package.json +2 -2
package/dist/bin/cli.js CHANGED
@@ -5975,7 +5975,7 @@ class CAC extends EventEmitter {
5975
5975
  }
5976
5976
  }
5977
5977
  // package.json
5978
- var version = "0.3.0";
5978
+ var version = "0.3.1";
5979
5979
 
5980
5980
  // bin/cli.ts
5981
5981
  await __promiseAll([
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bun-git-hooks",
3
3
  "type": "module",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "description": "A modern, zero dependency tool for managing git hooks in Bun projects.",
6
6
  "author": "Chris Breuer <chris@stacksjs.org>",
7
7
  "license": "MIT",
@@ -58,7 +58,7 @@
58
58
  "postinstall": "bun ./scripts/postinstall.ts",
59
59
  "uninstall": "bun ./scripts/uninstall.ts",
60
60
  "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
61
- "prepublishOnly": "bun --bun run build && bun run compile:all",
61
+ "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
62
62
  "test": "bun test",
63
63
  "lint": "bunx --bun eslint .",
64
64
  "lint:fix": "bunx --bun eslint . --fix",