1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

electron-packager: add page (#4892)

This commit is contained in:
Starkiller645 2020-10-30 21:03:13 +00:00 committed by GitHub
parent 04591b14dc
commit b83cf195f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# electron-packager
> A tool used to build Electron app executables for Windows, Linux and MacOS.
> Requires a valid package.json in the application directory.
> More information: <https://github.com/electron/electron-packager>.
- Package an application for the current architecture and platform:
`electron-packager "{{path/to/app}}" "{{app_name}}"`
- Package an application for all architectures and platforms:
`electron-packager "{{path/to/app}}" "{{app_name}}" --all`
- Package an application for 64-bit Linux:
`electron-packager "{{path/to/app}}" "{{app_name}}" --platform="{{linux}}" --arch="{{x64}}"`
- Package an application for ARM MacOS:
`electron-packager "{{path/to/app}}" "{{app_name}}" --platform="{{darwin}}" --arch="{{arm64}}"`