@ascua/electron 0.4.3 → 0.4.5

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.
@@ -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
 
@@ -181,10 +180,10 @@ module.exports = Command.extend({
181
180
 
182
181
  log.info({ appId, dmgPath }, "notarizing");
183
182
 
184
- return await Dmgerizer.notarize({
183
+ return await Notarizer.notarize({
185
184
  tool: 'notarytool',
186
185
  appBundleId: appId,
187
- dmgPath: dmgPath,
186
+ appPath: dmgPath,
188
187
  appleId: APPLE_ID,
189
188
  teamId: APPLE_TEAMID,
190
189
  appleIdPassword: APPLE_PASSWORD,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascua/electron",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
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.3",
19
- "@ascua/service": "^0.4.3",
18
+ "@ascua/config": "^0.4.5",
19
+ "@ascua/service": "^0.4.5",
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": "31b9bbbef303a2e7d4b65b9be47e40724ba7303e"
36
+ "gitHead": "a99442b65f6b17f55792a66a5b7b884ce745af0c"
38
37
  }