@todesktop/cli 1.1.3 → 1.1.4

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.
@@ -19,7 +19,16 @@
19
19
  "subCommands": []
20
20
  },
21
21
  {
22
- "description": "View your builds",
22
+ "description": "",
23
+ "positionalArgs": [],
24
+ "args": [],
25
+ "isIndex": false,
26
+ "name": "logout",
27
+ "path": "logout.js",
28
+ "subCommands": []
29
+ },
30
+ {
31
+ "description": "Release a build",
23
32
  "positionalArgs": [
24
33
  "id"
25
34
  ],
@@ -27,45 +36,35 @@
27
36
  {
28
37
  "key": "id",
29
38
  "type": "string",
30
- "description": "View a specific build by ID",
39
+ "description": "A specific build ID to release",
31
40
  "isRequired": false,
32
41
  "aliases": [],
33
42
  "positional": true
34
43
  },
44
+ {
45
+ "key": "force",
46
+ "type": "boolean",
47
+ "description": "Skips interactive confirmation step",
48
+ "isRequired": false,
49
+ "aliases": [],
50
+ "positional": false
51
+ },
35
52
  {
36
53
  "key": "latest",
37
54
  "type": "boolean",
38
- "description": "View the latest build",
55
+ "description": "Release the latest build",
39
56
  "isRequired": false,
40
57
  "aliases": [],
41
58
  "positional": false
42
59
  }
43
60
  ],
44
61
  "isIndex": false,
45
- "name": "builds",
46
- "path": "builds.js",
47
- "subCommands": []
48
- },
49
- {
50
- "description": "",
51
- "positionalArgs": [],
52
- "args": [],
53
- "isIndex": false,
54
- "name": "whoami",
55
- "path": "whoami.js",
56
- "subCommands": []
57
- },
58
- {
59
- "description": "",
60
- "positionalArgs": [],
61
- "args": [],
62
- "isIndex": false,
63
- "name": "logout",
64
- "path": "logout.js",
62
+ "name": "release",
63
+ "path": "release.js",
65
64
  "subCommands": []
66
65
  },
67
66
  {
68
- "description": "Release a build",
67
+ "description": "View your builds",
69
68
  "positionalArgs": [
70
69
  "id"
71
70
  ],
@@ -73,31 +72,32 @@
73
72
  {
74
73
  "key": "id",
75
74
  "type": "string",
76
- "description": "A specific build ID to release",
75
+ "description": "View a specific build by ID",
77
76
  "isRequired": false,
78
77
  "aliases": [],
79
78
  "positional": true
80
79
  },
81
- {
82
- "key": "force",
83
- "type": "boolean",
84
- "description": "Skips interactive confirmation step",
85
- "isRequired": false,
86
- "aliases": [],
87
- "positional": false
88
- },
89
80
  {
90
81
  "key": "latest",
91
82
  "type": "boolean",
92
- "description": "Release the latest build",
83
+ "description": "View the latest build",
93
84
  "isRequired": false,
94
85
  "aliases": [],
95
86
  "positional": false
96
87
  }
97
88
  ],
98
89
  "isIndex": false,
99
- "name": "release",
100
- "path": "release.js",
90
+ "name": "builds",
91
+ "path": "builds.js",
92
+ "subCommands": []
93
+ },
94
+ {
95
+ "description": "",
96
+ "positionalArgs": [],
97
+ "args": [],
98
+ "isIndex": false,
99
+ "name": "whoami",
100
+ "path": "whoami.js",
101
101
  "subCommands": []
102
102
  }
103
103
  ]
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@todesktop/cli",
7
- "version": "1.1.3",
7
+ "version": "1.1.4",
8
8
  "license": "MIT",
9
9
  "author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
10
10
  "homepage": "https://todesktop.com/cli",
@@ -18,7 +18,6 @@
18
18
  "node": ">=12"
19
19
  },
20
20
  "scripts": {
21
- "prepublishOnly": "npx force-resolutions",
22
21
  "dev": "cp-cli dev.env .env && pastel dev",
23
22
  "dev:prod": "cp-cli prod.env .env && pastel dev",
24
23
  "build": "cross-env NODE_ENV=production pastel build && cp-cli prod.env .env && cp node_modules/pastel/boot.js build/boot.js && sed -i'.bak' 's@pastel\\/boot@.\\/boot@g' build/cli.js",
@@ -37,6 +36,7 @@
37
36
  "README.md"
38
37
  ],
39
38
  "dependencies": {
39
+ "@babel/runtime": "^7.18.9",
40
40
  "@sentry/node": "^5.27.2",
41
41
  "ajv": "^6.12.6",
42
42
  "analytics-node": "^4.0.1",
@@ -61,7 +61,6 @@
61
61
  "ink": "^3.2.0",
62
62
  "ink-gradient": "^2.0.0",
63
63
  "ink-link": "^2.0.0",
64
- "ink-progress-bar": "^3.0.0",
65
64
  "ink-select-input": "^4.2.1",
66
65
  "ink-text-input": "^4.0.1",
67
66
  "is-ci": "^3.0.1",
@@ -145,5 +144,13 @@
145
144
  "pastel/parcel-bundler/deasync": "0.1.24",
146
145
  "ink": "3.2.0",
147
146
  "react": "17.0.2"
147
+ },
148
+ "packageExtensions": {
149
+ "ink-progress-bar@*": {
150
+ "dependencies": {
151
+ "react": "*",
152
+ "ink": "*"
153
+ }
154
+ }
148
155
  }
149
156
  }