Skip to content

Commit 91d8756

Browse files
committed
chore: release v0.2.11
1 parent 077bdfe commit 91d8756

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
## v0.2.10...v0.2.10
3+
4+
[compare changes](https://github.com/stacksjs/bun-git-hooks/compare/v0.2.10...v0.2.10)
5+
26
## v0.2.9...v0.2.9
37

48
[compare changes](https://github.com/stacksjs/bun-git-hooks/compare/v0.2.9...v0.2.9)

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bun-git-hooks",
33
"type": "module",
4-
"version": "0.2.10",
4+
"version": "0.2.11",
55
"description": "A modern, zero dependency tool for managing git hooks in Bun projects.",
66
"author": "Chris Breuer <[email protected]>",
77
"license": "MIT",
@@ -38,19 +38,19 @@
3838
"module": "./dist/index.js",
3939
"types": "./dist/index.d.ts",
4040
"bin": {
41-
"git-hooks": "./dist/cli.js",
42-
"bun-git-hooks": "./dist/cli.js"
41+
"git-hooks": "./bin/git-hooks",
42+
"bun-git-hooks": "./bin/git-hooks"
4343
},
44-
"files": ["README.md", "dist"],
44+
"files": ["README.md", "bin", "dist"],
4545
"scripts": {
4646
"build": "bun build.ts && bun run compile",
47-
"compile": "bun build ./bin/cli.ts --compile --minify --outfile dist/cli.js",
47+
"compile": "bun build ./bin/cli.ts --compile --minify --outfile bin/git-hooks",
4848
"compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64",
49-
"compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile dist/git-hooks-linux-x64",
50-
"compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile dist/git-hooks-linux-arm64",
51-
"compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile dist/git-hooks-windows-x64.exe",
52-
"compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile dist/git-hooks-darwin-x64",
53-
"compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile dist/git-hooks-darwin-arm64",
49+
"compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile bin/git-hooks-linux-x64",
50+
"compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile bin/git-hooks-linux-arm64",
51+
"compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/git-hooks-windows-x64.exe",
52+
"compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/git-hooks-darwin-x64",
53+
"compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/git-hooks-darwin-arm64",
5454
"postinstall": "bun ./scripts/postinstall.ts",
5555
"uninstall": "bun ./scripts/uninstall.ts",
5656
"lint": "bunx --bun eslint .",
@@ -66,11 +66,11 @@
6666
"typecheck": "bun --bun tsc --noEmit",
6767
"zip": "bun run zip:all",
6868
"zip:all": "bun run zip:linux-x64 && bun run zip:linux-arm64 && bun run zip:windows-x64 && bun run zip:darwin-x64 && bun run zip:darwin-arm64",
69-
"zip:linux-x64": "zip -j dist/git-hooks-linux-x64.zip dist/git-hooks-linux-x64",
70-
"zip:linux-arm64": "zip -j dist/git-hooks-linux-arm64.zip dist/git-hooks-linux-arm64",
71-
"zip:windows-x64": "zip -j dist/git-hooks-windows-x64.zip dist/git-hooks-windows-x64.exe",
72-
"zip:darwin-x64": "zip -j dist/git-hooks-darwin-x64.zip dist/git-hooks-darwin-x64",
73-
"zip:darwin-arm64": "zip -j dist/git-hooks-darwin-arm64.zip dist/git-hooks-darwin-arm64"
69+
"zip:linux-x64": "zip -j bin/git-hooks-linux-x64.zip bin/git-hooks-linux-x64",
70+
"zip:linux-arm64": "zip -j bin/git-hooks-linux-arm64.zip bin/git-hooks-linux-arm64",
71+
"zip:windows-x64": "zip -j bin/git-hooks-windows-x64.zip bin/git-hooks-windows-x64.exe",
72+
"zip:darwin-x64": "zip -j bin/git-hooks-darwin-x64.zip bin/git-hooks-darwin-x64",
73+
"zip:darwin-arm64": "zip -j bin/git-hooks-darwin-arm64.zip bin/git-hooks-darwin-arm64"
7474
},
7575
"devDependencies": {
7676
"@iconify-json/carbon": "^1.2.8",

0 commit comments

Comments
 (0)