bun-git-hooks 0.2.9 → 0.2.10
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/dist/cli.js
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun-git-hooks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.10",
|
|
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",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"files": ["README.md", "dist"],
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "bun build.ts && bun run compile",
|
|
47
|
-
"compile": "bun build ./bin/cli.ts --compile --minify --outfile
|
|
47
|
+
"compile": "bun build ./bin/cli.ts --compile --minify --outfile dist/cli.js",
|
|
48
48
|
"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
|
|
50
|
-
"compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile
|
|
51
|
-
"compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile
|
|
52
|
-
"compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile
|
|
53
|
-
"compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile
|
|
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",
|
|
54
54
|
"postinstall": "bun ./scripts/postinstall.ts",
|
|
55
55
|
"uninstall": "bun ./scripts/uninstall.ts",
|
|
56
56
|
"lint": "bunx --bun eslint .",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"typecheck": "bun --bun tsc --noEmit",
|
|
67
67
|
"zip": "bun run zip:all",
|
|
68
68
|
"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
|
|
70
|
-
"zip:linux-arm64": "zip -j
|
|
71
|
-
"zip:windows-x64": "zip -j
|
|
72
|
-
"zip:darwin-x64": "zip -j
|
|
73
|
-
"zip:darwin-arm64": "zip -j
|
|
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"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@iconify-json/carbon": "^1.2.8",
|