Skip to content

Commit c3ff430

Browse files
authored
chore(docs): fix various broken links (#8937)
1 parent 324032c commit c3ff430

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ will declare to use node-modules instead of PnP.
112112

113113
[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).
114114

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).
116116

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:
118118
```json
119119
"build": {
120120
"appId": "your.id",
@@ -124,7 +124,7 @@ will declare to use node-modules instead of PnP.
124124
}
125125
```
126126
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)
128128

129129
3. Add [icons](https://www.electron.build/icons).
130130

@@ -139,16 +139,16 @@ will declare to use node-modules instead of PnP.
139139

140140
To ensure your native dependencies are always matched electron version, simply add script `"postinstall": "electron-builder install-app-deps"` to your `package.json`.
141141

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`.
143143

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).
145145

146146
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).
147147

148148
## 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).
150150

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.
152152
```js
153153
"use strict"
154154

0 commit comments

Comments
 (0)