Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix codesigning on macos #345

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"build:local": "tsc && npm run clean-esm && npm run transpile-esm && npm run clean-cjs && npm run transpile-cjs",
"clean-cjs": "rimraf cjs",
"transpile-cjs": "babel --out-dir cjs --extensions \".ts\" --source-maps --config-file ./babel.config.cjs.json src && echo {\\\"type\\\": \\\"commonjs\\\"} > cjs/package.json",
"dist-pkg": "pkg -C Gzip -t node18 --no-signature --config package.json -o frodo cjs/app.js",
"dist-pkg-linux": "pkg -C Gzip -t node18-linux --no-signature --config package.json -o frodo-linux cjs/app.js",
"dist-pkg-macos": "pkg -C Gzip -t node18-macos --no-signature --config package.json -o frodo-macos cjs/app.js",
"dist-pkg-win": "pkg -C Gzip -t node18-win --no-signature --config package.json -o frodo.exe cjs/app.js",
"dist-pkg": "pkg -C Gzip -t node18 --config package.json -o frodo cjs/app.js",
"dist-pkg-linux": "pkg -C Gzip -t node18-linux --config package.json -o frodo-linux cjs/app.js",
"dist-pkg-macos": "pkg -C Gzip -t node18-macos --config package.json -o frodo-macos cjs/app.js",
"dist-pkg-win": "pkg -C Gzip -t node18-win --config package.json -o frodo.exe cjs/app.js",
"build:binary": "tsc && npm run clean-cjs && npm run transpile-cjs && npm run dist-pkg",
"link-frodo-lib": "npm link ../frodo-lib",
"watch": "npm run link-frodo-lib && babel --watch --out-dir esm --extensions \".ts\" --source-maps --config-file ./babel.config.esm.json src"
Expand Down
Loading