From e4c90b40a5f6af857a826dcc63e125a617b91dd1 Mon Sep 17 00:00:00 2001 From: Timeo Williams Date: Wed, 18 Dec 2024 14:02:15 -0500 Subject: [PATCH 1/2] docs: support building distributables for Mac Store --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e634847..4885ea7 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,11 @@ So you've got an **amazing** application there, and you want to package it all u ```bash npm run make ``` +For those looking to publish to the Apple Store, you'll need to create a universal build. + +```bash +npm run make -- --arch=universal --platform=mas +``` ## Publishing your app From d6e68d086fb9d7d8749da0f2fed83d2f2e544e1a Mon Sep 17 00:00:00 2001 From: Timeo Williams Date: Sat, 21 Dec 2024 18:58:52 -0500 Subject: [PATCH 2/2] fix: rm trailing space for linting --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4885ea7..b8dc358 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,10 @@ npx create-electron-app@latest my-app --template=webpack There are currently four first-party templates: -* `webpack` -* `webpack-typescript` -* `vite` -* `vite-typescript` +- `webpack` +- `webpack-typescript` +- `vite` +- `vite-typescript` All of these templates are built around plugins that bundle your JavaScript code for production and includes a dev server to provide a better developer experience. @@ -59,7 +59,7 @@ So you've got an **amazing** application there, and you want to package it all u ```bash npm run make ``` -For those looking to publish to the Apple Store, you'll need to create a universal build. +For those looking to publish to the Apple Store, you'll need to create a universal build. ```bash npm run make -- --arch=universal --platform=mas @@ -87,6 +87,6 @@ Once you've got a basic app starting, building and publishing, it's time to add You can also check out the documentation on some of our more advanced features like: -* [Adding plugins](config/plugins/) -* [Debugging your app](advanced/debugging.md) -* [Writing your own makers, publishers and plugins](advanced/extending-electron-forge/) +- [Adding plugins](config/plugins/) +- [Debugging your app](advanced/debugging.md) +- [Writing your own makers, publishers and plugins](advanced/extending-electron-forge/)