@todesktop/cli 1.2.1 → 1.2.2
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 +1 -1
- package/build/commands/build.js +3 -3
- package/build/commands/build.js.map +1 -1
- package/build/commands/builds.js +3 -3
- package/build/commands/builds.js.map +1 -1
- package/build/commands/logout.js +2 -2
- package/build/commands/logout.js.map +1 -1
- package/build/commands/release.js +2 -2
- package/build/commands/release.js.map +1 -1
- package/build/commands/whoami.js +2 -2
- package/build/commands/whoami.js.map +1 -1
- package/build/commands.json +27 -27
- package/package.json +1 -1
package/build/commands.json
CHANGED
|
@@ -1,23 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"commands": [
|
|
3
|
-
{
|
|
4
|
-
"description": "Build an Electron app with native installers, code signing baked-in, etc. but without releasing it (existing users won't get an auto-update). For quicker builds, you can append `--code-sign=false` to disable code-signing and notarization.",
|
|
5
|
-
"positionalArgs": [],
|
|
6
|
-
"args": [
|
|
7
|
-
{
|
|
8
|
-
"key": "codeSign",
|
|
9
|
-
"type": "boolean",
|
|
10
|
-
"description": "Whether or not code-signing and notarization should be performed. Disable this for quicker builds",
|
|
11
|
-
"isRequired": false,
|
|
12
|
-
"aliases": [],
|
|
13
|
-
"positional": false
|
|
14
|
-
}
|
|
15
|
-
],
|
|
16
|
-
"isIndex": false,
|
|
17
|
-
"name": "build",
|
|
18
|
-
"path": "build.js",
|
|
19
|
-
"subCommands": []
|
|
20
|
-
},
|
|
21
3
|
{
|
|
22
4
|
"description": "View your builds",
|
|
23
5
|
"positionalArgs": [
|
|
@@ -46,6 +28,24 @@
|
|
|
46
28
|
"path": "builds.js",
|
|
47
29
|
"subCommands": []
|
|
48
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"description": "Build an Electron app with native installers, code signing baked-in, etc. but without releasing it (existing users won't get an auto-update). For quicker builds, you can append `--code-sign=false` to disable code-signing and notarization.",
|
|
33
|
+
"positionalArgs": [],
|
|
34
|
+
"args": [
|
|
35
|
+
{
|
|
36
|
+
"key": "codeSign",
|
|
37
|
+
"type": "boolean",
|
|
38
|
+
"description": "Whether or not code-signing and notarization should be performed. Disable this for quicker builds",
|
|
39
|
+
"isRequired": false,
|
|
40
|
+
"aliases": [],
|
|
41
|
+
"positional": false
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"isIndex": false,
|
|
45
|
+
"name": "build",
|
|
46
|
+
"path": "build.js",
|
|
47
|
+
"subCommands": []
|
|
48
|
+
},
|
|
49
49
|
{
|
|
50
50
|
"description": "",
|
|
51
51
|
"positionalArgs": [],
|
|
@@ -55,6 +55,15 @@
|
|
|
55
55
|
"path": "logout.js",
|
|
56
56
|
"subCommands": []
|
|
57
57
|
},
|
|
58
|
+
{
|
|
59
|
+
"description": "",
|
|
60
|
+
"positionalArgs": [],
|
|
61
|
+
"args": [],
|
|
62
|
+
"isIndex": false,
|
|
63
|
+
"name": "whoami",
|
|
64
|
+
"path": "whoami.js",
|
|
65
|
+
"subCommands": []
|
|
66
|
+
},
|
|
58
67
|
{
|
|
59
68
|
"description": "Release a build",
|
|
60
69
|
"positionalArgs": [
|
|
@@ -90,15 +99,6 @@
|
|
|
90
99
|
"name": "release",
|
|
91
100
|
"path": "release.js",
|
|
92
101
|
"subCommands": []
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"description": "",
|
|
96
|
-
"positionalArgs": [],
|
|
97
|
-
"args": [],
|
|
98
|
-
"isIndex": false,
|
|
99
|
-
"name": "whoami",
|
|
100
|
-
"path": "whoami.js",
|
|
101
|
-
"subCommands": []
|
|
102
102
|
}
|
|
103
103
|
]
|
|
104
104
|
}
|
package/package.json
CHANGED