@todesktop/cli 1.1.0 → 1.1.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/build/commands/build.js +4740 -115
- package/build/commands/build.js.map +1 -1
- package/build/commands/builds.js +4224 -109
- package/build/commands/builds.js.map +1 -1
- package/build/commands/logout.js +2511 -57
- package/build/commands/logout.js.map +1 -1
- package/build/commands/release.js +3606 -89
- package/build/commands/release.js.map +1 -1
- package/build/commands/whoami.js +2511 -57
- package/build/commands/whoami.js.map +1 -1
- package/build/commands.json +28 -28
- package/package.json +9 -9
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.1",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -18,8 +18,9 @@
|
|
|
18
18
|
"node": ">=12"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"
|
|
21
|
+
"prepare": "npx force-resolutions",
|
|
22
22
|
"dev": "cp-cli dev.env .env && pastel dev",
|
|
23
|
+
"dev:prod": "cp-cli prod.env .env && pastel dev",
|
|
23
24
|
"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",
|
|
24
25
|
"lint": "eslint .",
|
|
25
26
|
"lint--fix": "eslint . --fix",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"analytics-node": "^4.0.1",
|
|
42
43
|
"archiver": "^5.2.0",
|
|
43
44
|
"axios": "^0.21.1",
|
|
44
|
-
"better-ajv-errors": "^
|
|
45
|
+
"better-ajv-errors": "^1.2.0",
|
|
45
46
|
"bunyan": "^1.8.14",
|
|
46
47
|
"camelcase-keys": "^5.2.0",
|
|
47
48
|
"chalk": "^4.1.0",
|
|
@@ -55,8 +56,7 @@
|
|
|
55
56
|
"fast-glob": "^3.2.4",
|
|
56
57
|
"final-form": "^4.20.1",
|
|
57
58
|
"find-up": "^5.0.0",
|
|
58
|
-
"firebase": "^7.
|
|
59
|
-
"force-resolutions": "^1.0.10",
|
|
59
|
+
"firebase": "^7.24.0",
|
|
60
60
|
"git-rev-sync": "^3.0.2",
|
|
61
61
|
"ink": "^3.2.0",
|
|
62
62
|
"ink-gradient": "^2.0.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"pkg-up": "^3.1.0",
|
|
72
72
|
"pretty-bytes": "^5.4.1",
|
|
73
73
|
"prop-types": "^15.7.2",
|
|
74
|
-
"react": "^
|
|
74
|
+
"react": "^17.0.2",
|
|
75
75
|
"react-final-form": "^6.5.1",
|
|
76
76
|
"semver": "^7.3.2",
|
|
77
77
|
"stream-to-array": "^2.3.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@babel/preset-env": "^7.11.5",
|
|
88
88
|
"@babel/register": "^7.12.1",
|
|
89
89
|
"@types/bunyan": "^1.8.6",
|
|
90
|
-
"ava": "^3.
|
|
90
|
+
"ava": "^4.3.1",
|
|
91
91
|
"babel-preset-es2015": "^6.24.1",
|
|
92
92
|
"cp-cli": "^2.0.0",
|
|
93
93
|
"cross-env": "^7.0.2",
|
|
@@ -113,7 +113,6 @@
|
|
|
113
113
|
"sinon": "^9.0.3"
|
|
114
114
|
},
|
|
115
115
|
"ava": {
|
|
116
|
-
"babel": true,
|
|
117
116
|
"files": [
|
|
118
117
|
"test/**/*.js",
|
|
119
118
|
"!test/fixtures/**/*",
|
|
@@ -144,6 +143,7 @@
|
|
|
144
143
|
},
|
|
145
144
|
"resolutions": {
|
|
146
145
|
"pastel/parcel-bundler/deasync": "0.1.24",
|
|
147
|
-
"ink": "3.2.0"
|
|
146
|
+
"ink": "3.2.0",
|
|
147
|
+
"react": "17.0.2"
|
|
148
148
|
}
|
|
149
149
|
}
|