@todesktop/cli 1.1.2 → 1.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/README.md +49 -0
- package/build/commands/build.js +6 -4
- package/build/commands/build.js.map +1 -1
- package/build/commands/builds.js +1 -1
- 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 +1 -1
- 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 +27 -27
- package/package.json +13 -4
package/build/commands.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"subCommands": []
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
|
-
"description": "
|
|
22
|
+
"description": "Release a build",
|
|
23
23
|
"positionalArgs": [
|
|
24
24
|
"id"
|
|
25
25
|
],
|
|
@@ -27,36 +27,35 @@
|
|
|
27
27
|
{
|
|
28
28
|
"key": "id",
|
|
29
29
|
"type": "string",
|
|
30
|
-
"description": "
|
|
30
|
+
"description": "A specific build ID to release",
|
|
31
31
|
"isRequired": false,
|
|
32
32
|
"aliases": [],
|
|
33
33
|
"positional": true
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"key": "force",
|
|
37
|
+
"type": "boolean",
|
|
38
|
+
"description": "Skips interactive confirmation step",
|
|
39
|
+
"isRequired": false,
|
|
40
|
+
"aliases": [],
|
|
41
|
+
"positional": false
|
|
42
|
+
},
|
|
35
43
|
{
|
|
36
44
|
"key": "latest",
|
|
37
45
|
"type": "boolean",
|
|
38
|
-
"description": "
|
|
46
|
+
"description": "Release the latest build",
|
|
39
47
|
"isRequired": false,
|
|
40
48
|
"aliases": [],
|
|
41
49
|
"positional": false
|
|
42
50
|
}
|
|
43
51
|
],
|
|
44
52
|
"isIndex": false,
|
|
45
|
-
"name": "
|
|
46
|
-
"path": "
|
|
47
|
-
"subCommands": []
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"description": "",
|
|
51
|
-
"positionalArgs": [],
|
|
52
|
-
"args": [],
|
|
53
|
-
"isIndex": false,
|
|
54
|
-
"name": "logout",
|
|
55
|
-
"path": "logout.js",
|
|
53
|
+
"name": "release",
|
|
54
|
+
"path": "release.js",
|
|
56
55
|
"subCommands": []
|
|
57
56
|
},
|
|
58
57
|
{
|
|
59
|
-
"description": "
|
|
58
|
+
"description": "View your builds",
|
|
60
59
|
"positionalArgs": [
|
|
61
60
|
"id"
|
|
62
61
|
],
|
|
@@ -64,31 +63,23 @@
|
|
|
64
63
|
{
|
|
65
64
|
"key": "id",
|
|
66
65
|
"type": "string",
|
|
67
|
-
"description": "
|
|
66
|
+
"description": "View a specific build by ID",
|
|
68
67
|
"isRequired": false,
|
|
69
68
|
"aliases": [],
|
|
70
69
|
"positional": true
|
|
71
70
|
},
|
|
72
|
-
{
|
|
73
|
-
"key": "force",
|
|
74
|
-
"type": "boolean",
|
|
75
|
-
"description": "Skips interactive confirmation step",
|
|
76
|
-
"isRequired": false,
|
|
77
|
-
"aliases": [],
|
|
78
|
-
"positional": false
|
|
79
|
-
},
|
|
80
71
|
{
|
|
81
72
|
"key": "latest",
|
|
82
73
|
"type": "boolean",
|
|
83
|
-
"description": "
|
|
74
|
+
"description": "View the latest build",
|
|
84
75
|
"isRequired": false,
|
|
85
76
|
"aliases": [],
|
|
86
77
|
"positional": false
|
|
87
78
|
}
|
|
88
79
|
],
|
|
89
80
|
"isIndex": false,
|
|
90
|
-
"name": "
|
|
91
|
-
"path": "
|
|
81
|
+
"name": "builds",
|
|
82
|
+
"path": "builds.js",
|
|
92
83
|
"subCommands": []
|
|
93
84
|
},
|
|
94
85
|
{
|
|
@@ -99,6 +90,15 @@
|
|
|
99
90
|
"name": "whoami",
|
|
100
91
|
"path": "whoami.js",
|
|
101
92
|
"subCommands": []
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"description": "",
|
|
96
|
+
"positionalArgs": [],
|
|
97
|
+
"args": [],
|
|
98
|
+
"isIndex": false,
|
|
99
|
+
"name": "logout",
|
|
100
|
+
"path": "logout.js",
|
|
101
|
+
"subCommands": []
|
|
102
102
|
}
|
|
103
103
|
]
|
|
104
104
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"name": "@todesktop/cli",
|
|
7
|
-
"version": "1.1.
|
|
7
|
+
"version": "1.1.5",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -36,12 +36,14 @@
|
|
|
36
36
|
"README.md"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
+
"@babel/runtime": "^7.18.9",
|
|
39
40
|
"@sentry/node": "^5.27.2",
|
|
40
41
|
"ajv": "^6.12.6",
|
|
41
42
|
"analytics-node": "^4.0.1",
|
|
42
43
|
"archiver": "^5.2.0",
|
|
43
44
|
"axios": "^0.21.1",
|
|
44
45
|
"better-ajv-errors": "^1.2.0",
|
|
46
|
+
"blacklist": "^1.1.4",
|
|
45
47
|
"bunyan": "^1.8.14",
|
|
46
48
|
"camelcase-keys": "^5.2.0",
|
|
47
49
|
"chalk": "^4.1.0",
|
|
@@ -60,9 +62,9 @@
|
|
|
60
62
|
"ink": "^3.2.0",
|
|
61
63
|
"ink-gradient": "^2.0.0",
|
|
62
64
|
"ink-link": "^2.0.0",
|
|
63
|
-
"ink-progress-bar": "^3.0.0",
|
|
64
65
|
"ink-select-input": "^4.2.1",
|
|
65
66
|
"ink-text-input": "^4.0.1",
|
|
67
|
+
"is-ci": "^3.0.1",
|
|
66
68
|
"is-installed-globally": "^0.3.2",
|
|
67
69
|
"latest-version": "^5.1.0",
|
|
68
70
|
"lodash.throttle": "^4.1.1",
|
|
@@ -104,7 +106,6 @@
|
|
|
104
106
|
"extract-zip": "^2.0.1",
|
|
105
107
|
"fs-extra": "^9.0.1",
|
|
106
108
|
"husky": "^4.3.0",
|
|
107
|
-
"is-ci": "^2.0.0",
|
|
108
109
|
"lint-staged": "^10.2.11",
|
|
109
110
|
"pastel": "^1.1.1",
|
|
110
111
|
"prettier": "^2.1.2",
|
|
@@ -136,7 +137,7 @@
|
|
|
136
137
|
"overrides": {
|
|
137
138
|
"pastel": {
|
|
138
139
|
"parcel-bundler": {
|
|
139
|
-
"deasync": "0.1.
|
|
140
|
+
"deasync": "0.1.27"
|
|
140
141
|
}
|
|
141
142
|
}
|
|
142
143
|
},
|
|
@@ -144,5 +145,13 @@
|
|
|
144
145
|
"pastel/parcel-bundler/deasync": "0.1.24",
|
|
145
146
|
"ink": "3.2.0",
|
|
146
147
|
"react": "17.0.2"
|
|
148
|
+
},
|
|
149
|
+
"packageExtensions": {
|
|
150
|
+
"ink-progress-bar@*": {
|
|
151
|
+
"dependencies": {
|
|
152
|
+
"react": "*",
|
|
153
|
+
"ink": "*"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
147
156
|
}
|
|
148
157
|
}
|