vue-cli-plugin-electron-builder-notarize 1.0.0 → 1.0.1
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/package.json +1 -1
- package/readme.md +5 -5
package/package.json
CHANGED
package/readme.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# electron-builder-notarize
|
1
|
+
# vue-cli-plugin-electron-builder-notarize
|
2
2
|
|
3
3
|
> Notarize Electron applications using electron-builder
|
4
4
|
|
@@ -8,10 +8,10 @@ For more details regarding the options and functionality: https://github.com/ele
|
|
8
8
|
|
9
9
|
```
|
10
10
|
# npm
|
11
|
-
npm i electron-builder-notarize --save-dev
|
11
|
+
npm i vue-cli-plugin-electron-builder-notarize --save-dev
|
12
12
|
|
13
13
|
# yarn
|
14
|
-
yarn add electron-builder-notarize --dev
|
14
|
+
yarn add vue-cli-plugin-electron-builder-notarize --dev
|
15
15
|
```
|
16
16
|
|
17
17
|
|
@@ -22,11 +22,11 @@ In your electron-builder config:
|
|
22
22
|
```json
|
23
23
|
{
|
24
24
|
...
|
25
|
-
"afterSign": "electron-builder-notarize",
|
25
|
+
"afterSign": "vue-cli-plugin-electron-builder-notarize",
|
26
26
|
"mac": {
|
27
27
|
...
|
28
28
|
"hardenedRuntime": true,
|
29
|
-
"entitlements": "./node_modules/electron-builder-notarize/entitlements.mac.inherit.plist",
|
29
|
+
"entitlements": "./node_modules/vue-cli-plugin-electron-builder-notarize/entitlements.mac.inherit.plist",
|
30
30
|
}
|
31
31
|
}
|
32
32
|
```
|