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:
parent
04591b14dc
commit
b83cf195f2
1 changed files with 21 additions and 0 deletions
21
pages/common/electron-packager.md
Normal file
21
pages/common/electron-packager.md
Normal 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}}"`
|
Loading…
Add table
Reference in a new issue