@electron-forge/plugin-fuses 6.1.1 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
@electron-forge/plugin-fuses
|
|
2
|
-
=====
|
|
1
|
+
## @electron-forge/plugin-fuses
|
|
3
2
|
|
|
4
3
|
This plugin allows flipping [Electron Fuses](https://github.com/electron/fuses) when packaging your app with Electron Forge.
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
### Usage
|
|
7
6
|
|
|
8
7
|
Install `@electron-forge/plugin-fuses` and `@electron/fuses` as dev dependencies and add this plugin to the `plugins` array in your Forge configuration:
|
|
8
|
+
|
|
9
9
|
```shell
|
|
10
10
|
# Yarn
|
|
11
11
|
yarn add --dev @electron-forge/plugin-fuses @electron/fuses
|
|
@@ -24,10 +24,10 @@ const forgeConfig = {
|
|
|
24
24
|
plugins: [
|
|
25
25
|
new FusesPlugin({
|
|
26
26
|
version: FuseVersion.V1,
|
|
27
|
-
[FuseV1Options.RunAsNode]: false
|
|
27
|
+
[FuseV1Options.RunAsNode]: false
|
|
28
28
|
// ...any other options supported by @electron/fuses
|
|
29
|
-
})
|
|
30
|
-
]
|
|
29
|
+
})
|
|
30
|
+
]
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
module.exports = forgeConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@electron-forge/plugin-fuses",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"description": "A plugin for flipping Electron Fuses in Electron Forge",
|
|
5
5
|
"repository": "https://github.com/electron/forge",
|
|
6
6
|
"author": "Erik Moura <erikian@erikian.dev>",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"node": ">= 14.17.5"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@electron-forge/plugin-base": "6.
|
|
34
|
-
"@electron-forge/shared-types": "6.
|
|
33
|
+
"@electron-forge/plugin-base": "6.2.0",
|
|
34
|
+
"@electron-forge/shared-types": "6.2.0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "34752e82a8dcb0b8d04fcd3624bd0c03b7471b31"
|
|
40
40
|
}
|