You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-11Lines changed: 8 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,17 +96,18 @@ See the full documentation on [electron.build](https://www.electron.build).
96
96
| “I want to support development” |[Donate](https://www.electron.build/donate)|
97
97
98
98
## Installation
99
-
[Yarn](http://yarnpkg.com/) is [strongly](https://github.com/electron-userland/electron-builder/issues/1147#issuecomment-276284477) recommended instead of npm.
100
-
101
-
`yarn add electron-builder --dev`
99
+
```
100
+
yarn add electron-builder --dev
101
+
// or npm, pnpm, bun
102
+
```
102
103
103
104
### Note for Yarn 3
104
105
105
-
Yarn 3 use PnP by default, but electron-builder still need node-modules(ref: [yarnpkg/berry#4804](https://github.com/yarnpkg/berry/issues/4804#issuecomment-1234407305)). Add configuration in the `.yarnrc.yaml` as follows:
106
+
Yarn 3 use PnP by default, but electron-builder still needs node-modules(ref: [yarnpkg/berry#4804](https://github.com/yarnpkg/berry/issues/4804#issuecomment-1234407305)). Add configuration in the `.yarnrc.yaml` as follows:
106
107
```
107
108
nodeLinker: "node-modules"
108
109
```
109
-
will declare to use node-modules instead of PnP.
110
+
This will declare to use node-modules instead of PnP.
110
111
111
112
## Quick Setup Guide
112
113
@@ -170,13 +171,9 @@ builder.build({
170
171
})
171
172
```
172
173
173
-
## Boilerplates
174
+
## Community Boilerplates
174
175
175
-
*[electron-webpack-quick-start](https://github.com/electron-userland/electron-webpack-quick-start) — A bare minimum project structure to get started developing with [electron-webpack](https://github.com/electron-userland/electron-webpack). Recommended.
176
176
*[electron-react-boilerplate](https://github.com/chentsulin/electron-react-boilerplate) A boilerplate for scalable cross-platform desktop apps.
177
-
*[electron-react-redux-boilerplate](https://github.com/jschr/electron-react-redux-boilerplate) A minimal boilerplate to get started with Electron, React and Redux.
178
-
*[electron-boilerplate](https://github.com/szwacz/electron-boilerplate) A minimalistic yet comprehensive boilerplate application.
179
-
*[Vue CLI 3 plugin for Electron](https://nklayman.github.io/vue-cli-plugin-electron-builder) A Vue CLI 3 plugin for Electron with no required configuration.
180
177
*[electron-vue-vite](https://github.com/caoxiemeihao/electron-vue-vite) A real simple Electron + Vue3 + Vite5 boilerplate.
181
178
*[vite-electron-builder](https://github.com/cawa-93/vite-electron-builder) Secure boilerplate for Electron app based on Vite. Supports multiple frameworks.
182
179
*[electronjs-with-nextjs](https://github.com/saulotarsobc/electronjs-with-nextjs) ElectronJS application with NextJS and TypeScript.
@@ -201,7 +198,7 @@ DEBUG=electron-builder
201
198
!!! tip "PowerShell"
202
199
PowerShell uses different syntax to set environment variables.
Copy file name to clipboardExpand all lines: packages/app-builder-lib/scheme.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6536,7 +6536,7 @@
6536
6536
"type": "null"
6537
6537
}
6538
6538
],
6539
-
"description": "Options for usage of Azure Trusted Signing (beta)\nCannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing"
6539
+
"description": "Options for usage of Azure Trusted Signing service\nCannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing"
Copy file name to clipboardExpand all lines: packages/electron-updater/src/main.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ function doLoadAutoUpdater(): AppUpdater {
52
52
}
53
53
}catch(error: any){
54
54
console.warn(
55
-
"Unable to detect 'package-type' for autoUpdater (beta rpm/deb/pacman support). If you'd like to expand support, please consider contributing to electron-builder",
55
+
"Unable to detect 'package-type' for autoUpdater (rpm/deb/pacman support). If you'd like to expand support, please consider contributing to electron-builder",
0 commit comments