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
+7-7
Original file line number
Diff line number
Diff line change
@@ -112,9 +112,9 @@ will declare to use node-modules instead of PnP.
112
112
113
113
[electron-webpack-quick-start](https://github.com/electron-userland/electron-webpack-quick-start) is a recommended way to create a new Electron application. See [Boilerplates](https://www.electron.build/#boilerplates).
114
114
115
-
1. Specify the standard fields in the application `package.json` — [name](https://electron.build./configuration.md#metadata), `description`, `version` and [author](https://docs.npmjs.com/files/package.json#people-fields-author-contributors).
115
+
1. Specify the standard fields in the application `package.json` — [name](https://electron.build/configuration.html#metadata), `description`, `version` and [author](https://docs.npmjs.com/files/package.json#people-fields-author-contributors).
116
116
117
-
2. Specify the [build](https://electron.build./configuration.md#build) configuration in the `package.json` as follows:
117
+
2. Specify the [build](https://www.electron.build/configuration.html#build) configuration in the `package.json` as follows:
118
118
```json
119
119
"build": {
120
120
"appId": "your.id",
@@ -124,7 +124,7 @@ will declare to use node-modules instead of PnP.
124
124
}
125
125
```
126
126
See [all options](https://www.electron.build/configuration). Option [files](https://www.electron.build/contents#files) to indicate which files should be packed in the final application, including the entry file, maybe required.
127
-
You can also use separate configuration files, such as `js`, `ts`, `yml`, and `json`/`json5`. See [read-config-file](https://www.npmjs.com/package/read-config-file) for supported extensions. [JS Example for programmatic API](https://www.electron.build/api/programmatic-usage)
127
+
You can also use separate configuration files, such as `js`, `ts`, `yml`, and `json`/`json5`. See [read-config-file](https://www.npmjs.com/package/read-config-file) for supported extensions. [JS Example for programmatic API](https://www.electron.build/programmatic-usage)
128
128
129
129
3. Add [icons](https://www.electron.build/icons).
130
130
@@ -139,16 +139,16 @@ will declare to use node-modules instead of PnP.
139
139
140
140
To ensure your native dependencies are always matched electron version, simply add script `"postinstall": "electron-builder install-app-deps"` to your `package.json`.
141
141
142
-
5. If you have native addons of your own that are part of the application (not as a dependency), set [nodeGypRebuild](https://www.electron.build./configuration.md#nodeGypRebuild) to `true`.
142
+
5. If you have native addons of your own that are part of the application (not as a dependency), set [nodeGypRebuild](https://www.electron.build/configuration.html#nodegyprebuild) to `true`.
143
143
144
-
Please note that everything is packaged into an asar archive [by default](https://electron.build./configuration.md#asar).
144
+
Please note that everything is packaged into an asar archive [by default](https://electron.build/configuration.html#asar).
145
145
146
146
For an app that will be shipped to production, you should sign your application. See [Where to buy code signing certificates](https://www.electron.build/code-signing#where-to-buy-code-signing-certificate).
147
147
148
148
## Programmatic Usage
149
-
See `node_modules/electron-builder/out/index.d.ts`. Typings for TypeScript are provided and also can be found [here](./electron-builder.md).
149
+
See `node_modules/electron-builder/out/index.d.ts`. Typings for TypeScript are provided and also can be found [here](https://www.electron.build/electron-builder/globals).
150
150
151
-
Code snippet provided below is also shown "in action" [here](./programmatic-usage.md) as well.
151
+
Code snippet provided below is also shown "in action" [here](https://www.electron.build/programmatic-usage) as well.
0 commit comments