@todesktop/cli 1.4.0 → 1.4.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/README.md +3 -1
- package/build/commands/build.js +3 -3
- package/build/commands/build.js.map +1 -1
- package/build/commands/builds.js +4 -4
- package/build/commands/builds.js.map +1 -1
- package/build/commands/logout.js +1 -1
- package/build/commands/logout.js.map +1 -1
- package/build/commands/release.js +4 -4
- package/build/commands/release.js.map +1 -1
- package/build/commands/whoami.js +1 -1
- package/build/commands/whoami.js.map +1 -1
- package/build/commands.json +42 -26
- package/package.json +1 -1
package/build/commands.json
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
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
|
+
"key": "config",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "Path to a different configuration file. If not specified, `todesktop.json` in the project root will be used",
|
|
19
|
+
"isRequired": false,
|
|
20
|
+
"aliases": [],
|
|
21
|
+
"positional": false
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"isIndex": false,
|
|
25
|
+
"name": "build",
|
|
26
|
+
"path": "build.js",
|
|
27
|
+
"subCommands": []
|
|
28
|
+
},
|
|
3
29
|
{
|
|
4
30
|
"description": "View your builds",
|
|
5
31
|
"positionalArgs": [
|
|
@@ -21,6 +47,14 @@
|
|
|
21
47
|
"isRequired": false,
|
|
22
48
|
"aliases": [],
|
|
23
49
|
"positional": false
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"key": "config",
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "Path to a different configuration file. If not specified, `todesktop.json` in the project root will be used",
|
|
55
|
+
"isRequired": false,
|
|
56
|
+
"aliases": [],
|
|
57
|
+
"positional": false
|
|
24
58
|
}
|
|
25
59
|
],
|
|
26
60
|
"isIndex": false,
|
|
@@ -57,6 +91,14 @@
|
|
|
57
91
|
"isRequired": false,
|
|
58
92
|
"aliases": [],
|
|
59
93
|
"positional": false
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"key": "config",
|
|
97
|
+
"type": "string",
|
|
98
|
+
"description": "Path to a different configuration file. If not specified, `todesktop.json` in the project root will be used",
|
|
99
|
+
"isRequired": false,
|
|
100
|
+
"aliases": [],
|
|
101
|
+
"positional": false
|
|
60
102
|
}
|
|
61
103
|
],
|
|
62
104
|
"isIndex": false,
|
|
@@ -81,32 +123,6 @@
|
|
|
81
123
|
"name": "whoami",
|
|
82
124
|
"path": "whoami.js",
|
|
83
125
|
"subCommands": []
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"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.",
|
|
87
|
-
"positionalArgs": [],
|
|
88
|
-
"args": [
|
|
89
|
-
{
|
|
90
|
-
"key": "codeSign",
|
|
91
|
-
"type": "boolean",
|
|
92
|
-
"description": "Whether or not code-signing and notarization should be performed. Disable this for quicker builds",
|
|
93
|
-
"isRequired": false,
|
|
94
|
-
"aliases": [],
|
|
95
|
-
"positional": false
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"key": "config",
|
|
99
|
-
"type": "string",
|
|
100
|
-
"description": "",
|
|
101
|
-
"isRequired": false,
|
|
102
|
-
"aliases": [],
|
|
103
|
-
"positional": false
|
|
104
|
-
}
|
|
105
|
-
],
|
|
106
|
-
"isIndex": false,
|
|
107
|
-
"name": "build",
|
|
108
|
-
"path": "build.js",
|
|
109
|
-
"subCommands": []
|
|
110
126
|
}
|
|
111
127
|
]
|
|
112
128
|
}
|
package/package.json
CHANGED