@todesktop/cli 1.6.2 → 1.7.0-0
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 +92 -1
- package/dist/cli.js +652 -40
- package/dist/cli.js.map +4 -4
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"name": "@todesktop/cli",
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.7.0-0",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"xdg-basedir": "^4.0.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@todesktop/shared": "^7.
|
|
87
|
+
"@todesktop/shared": "^7.160.0",
|
|
88
88
|
"@types/bunyan": "^1.8.6",
|
|
89
89
|
"@types/react": "^18.0.26",
|
|
90
90
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
@@ -106,6 +106,7 @@
|
|
|
106
106
|
"extract-zip": "^2.0.1",
|
|
107
107
|
"fs-extra": "^9.0.1",
|
|
108
108
|
"husky": "^4.3.0",
|
|
109
|
+
"ink-testing-library": "^2.1.0",
|
|
109
110
|
"lint-staged": "^10.2.11",
|
|
110
111
|
"prettier": "^2.8.1",
|
|
111
112
|
"proxyquire": "^2.1.3",
|
|
@@ -114,15 +115,19 @@
|
|
|
114
115
|
},
|
|
115
116
|
"ava": {
|
|
116
117
|
"extensions": [
|
|
117
|
-
"ts"
|
|
118
|
+
"ts",
|
|
119
|
+
"tsx"
|
|
118
120
|
],
|
|
119
121
|
"files": [
|
|
120
122
|
"test/**/*.ts",
|
|
123
|
+
"**/*.test.ts",
|
|
124
|
+
"**/*.test.tsx",
|
|
121
125
|
"!test/fixtures/**/*",
|
|
122
126
|
"!test/utilities/**/*"
|
|
123
127
|
],
|
|
124
128
|
"require": [
|
|
125
|
-
"esbuild-register"
|
|
129
|
+
"esbuild-register",
|
|
130
|
+
"./test/unit-test-init"
|
|
126
131
|
],
|
|
127
132
|
"timeout": "10m"
|
|
128
133
|
},
|