File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 57
57
"lint:fix" : " bunx --bun eslint . --fix" ,
58
58
"fresh" : " bunx rimraf node_modules/ bun.lock && bun i" ,
59
59
"changelog" : " bunx changelogen --output CHANGELOG.md" ,
60
- "prepublishOnly" : " bun --bun run build && bun run compile:all" ,
60
+ "prepublishOnly" : " bun --bun run build && bun run compile:all && bun run zip:all " ,
61
61
"release" : " bun run changelog && bunx bumpp package.json --all" ,
62
62
"test" : " bun test" ,
63
63
"typecheck" : " bunx tsc --noEmit" ,
64
- "app-icon" : " bun test/test-app-icon.ts" ,
65
- "app-icon:hush" : " bun test/generate-hush-icons.ts"
64
+ "zip" : " bun run zip:all" ,
65
+ "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" ,
66
+ "zip:linux-x64" : " zip -j bin/imgx-linux-x64.zip bin/imgx-linux-x64" ,
67
+ "zip:linux-arm64" : " zip -j bin/imgx-linux-arm64.zip bin/imgx-linux-arm64" ,
68
+ "zip:windows-x64" : " zip -j bin/imgx-windows-x64.zip bin/imgx-windows-x64.exe" ,
69
+ "zip:darwin-x64" : " zip -j bin/imgx-darwin-x64.zip bin/imgx-darwin-x64" ,
70
+ "zip:darwin-arm64" : " zip -j bin/imgx-darwin-arm64.zip bin/imgx-darwin-arm64"
66
71
},
67
72
"devDependencies" : {
68
73
"bun-plugin-dtsx" : " ^0.21.12" ,
You can’t perform that action at this time.
0 commit comments