@ascua/electron 0.1.3 → 0.1.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.
- package/lib/commands/build.js +3 -0
- package/package.json +6 -6
package/lib/commands/build.js
CHANGED
|
@@ -9,6 +9,7 @@ const Command = require('ember-cli/lib/commands/build');
|
|
|
9
9
|
const { log } = require('builder-util');
|
|
10
10
|
|
|
11
11
|
const APPLE_ID = process.env.APPLE_ID;
|
|
12
|
+
const APPLE_TEAMID = process.env.APPLE_TEAMID;
|
|
12
13
|
const APPLE_PASSWORD = process.env.APPLE_APP_SPECIFIC_PASSWORD;
|
|
13
14
|
|
|
14
15
|
module.exports = Command.extend({
|
|
@@ -156,6 +157,7 @@ module.exports = Command.extend({
|
|
|
156
157
|
appBundleId: appId,
|
|
157
158
|
appPath: appPath,
|
|
158
159
|
appleId: APPLE_ID,
|
|
160
|
+
teamId: APPLE_TEAMID,
|
|
159
161
|
appleIdPassword: APPLE_PASSWORD,
|
|
160
162
|
});
|
|
161
163
|
|
|
@@ -183,6 +185,7 @@ module.exports = Command.extend({
|
|
|
183
185
|
appBundleId: appId,
|
|
184
186
|
dmgPath: dmgPath,
|
|
185
187
|
appleId: APPLE_ID,
|
|
188
|
+
teamId: APPLE_TEAMID,
|
|
186
189
|
appleIdPassword: APPLE_PASSWORD,
|
|
187
190
|
});
|
|
188
191
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascua/electron",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Small description for @ascua/electron goes here",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"url": "https://abcum.com"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@ascua/config": "^0.1.
|
|
19
|
-
"@ascua/service": "^0.1.
|
|
18
|
+
"@ascua/config": "^0.1.5",
|
|
19
|
+
"@ascua/service": "^0.1.5",
|
|
20
20
|
"@electron/notarize": "^2.1.0",
|
|
21
21
|
"builder-util": "^24.8.1",
|
|
22
22
|
"electron": "27.0.3",
|
|
23
23
|
"electron-builder": "^24.6.4",
|
|
24
24
|
"electron-notarize-dmg": "^1.0.0",
|
|
25
25
|
"electron-updater": "^6.1.4",
|
|
26
|
-
"ember-cli-babel": "^
|
|
27
|
-
"ember-cli-htmlbars": "^
|
|
26
|
+
"ember-cli-babel": "^7.26.6",
|
|
27
|
+
"ember-cli-htmlbars": "^5.7.1"
|
|
28
28
|
},
|
|
29
29
|
"ember-addon": {
|
|
30
30
|
"demoURL": "https://abcum.github.io/ascua",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "274fbf1ef69721a5bccf4db6a88b3d1d4f050a09"
|
|
38
38
|
}
|