Skip to content

Commit fed3761

Browse files
author
thyldrm
committed
feat: add automated binary release workflow for CI/CD platforms
1 parent 95bf7cd commit fed3761

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"build": "tsup src/index.ts --format cjs --target node18 --clean",
1212
"build:binaries": "npm run build && npm run pkg:all",
1313
"pkg:all": "npm run pkg:linux && npm run pkg:darwin && npm run pkg:windows",
14-
"pkg:linux": "pkg dist/index.js --targets linux-x64,linux-arm64 --output binaries/codethreat-linux",
15-
"pkg:darwin": "pkg dist/index.js --targets macos-x64,macos-arm64 --output binaries/codethreat-darwin",
16-
"pkg:windows": "pkg dist/index.js --targets win-x64 --output binaries/codethreat-windows.exe",
14+
"pkg:linux": "pkg dist/index.js --targets node18-linux-x64,node18-linux-arm64 --output binaries/codethreat-linux",
15+
"pkg:darwin": "pkg dist/index.js --targets node18-macos-x64,node18-macos-arm64 --output binaries/codethreat-darwin",
16+
"pkg:windows": "pkg dist/index.js --targets node18-win-x64 --output binaries/codethreat-windows.exe",
1717
"start": "node dist/index.js",
1818
"test": "jest",
1919
"lint": "eslint src --ext .ts",

0 commit comments

Comments
 (0)