@ascua/electron 0.4.2 → 0.4.4
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/lib/commands/build.js +3 -3
- package/package.json +4 -5
package/lib/commands/build.js
CHANGED
|
@@ -4,7 +4,6 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const Builder = require('electron-builder');
|
|
6
6
|
const Notarizer = require('@electron/notarize');
|
|
7
|
-
const Dmgerizer = require('electron-notarize-dmg');
|
|
8
7
|
const Command = require('ember-cli/lib/commands/build');
|
|
9
8
|
const { log } = require('builder-util');
|
|
10
9
|
|
|
@@ -129,6 +128,7 @@ module.exports = Command.extend({
|
|
|
129
128
|
],
|
|
130
129
|
},
|
|
131
130
|
mac: {
|
|
131
|
+
notarize: false,
|
|
132
132
|
darkModeSupport: true,
|
|
133
133
|
hardenedRuntime: true,
|
|
134
134
|
icon: 'electron/mac/icon.png',
|
|
@@ -180,10 +180,10 @@ module.exports = Command.extend({
|
|
|
180
180
|
|
|
181
181
|
log.info({ appId, dmgPath }, "notarizing");
|
|
182
182
|
|
|
183
|
-
return await
|
|
183
|
+
return await Notarizer.notarize({
|
|
184
184
|
tool: 'notarytool',
|
|
185
185
|
appBundleId: appId,
|
|
186
|
-
|
|
186
|
+
appPath: dmgPath,
|
|
187
187
|
appleId: APPLE_ID,
|
|
188
188
|
teamId: APPLE_TEAMID,
|
|
189
189
|
appleIdPassword: APPLE_PASSWORD,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascua/electron",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Small description for @ascua/electron goes here",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -15,13 +15,12 @@
|
|
|
15
15
|
"url": "https://surrealdb.com"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@ascua/config": "^0.4.
|
|
19
|
-
"@ascua/service": "^0.4.
|
|
18
|
+
"@ascua/config": "^0.4.4",
|
|
19
|
+
"@ascua/service": "^0.4.4",
|
|
20
20
|
"@electron/notarize": "^2.3.0",
|
|
21
21
|
"builder-util": "^24.8.1",
|
|
22
22
|
"electron": "30.0.3",
|
|
23
23
|
"electron-builder": "^24.13.3",
|
|
24
|
-
"electron-notarize-dmg": "^1.0.0",
|
|
25
24
|
"electron-updater": "^6.1.8",
|
|
26
25
|
"ember-cli-babel": "^8.2.0",
|
|
27
26
|
"ember-cli-htmlbars": "^6.3.0"
|
|
@@ -34,5 +33,5 @@
|
|
|
34
33
|
"publishConfig": {
|
|
35
34
|
"access": "public"
|
|
36
35
|
},
|
|
37
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "a5d740357d9053c1dcc3215d996bfc094aabceab"
|
|
38
37
|
}
|