@todesktop/cli 1.7.7 → 1.8.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 +76 -4
- package/dist/cli.js +1246 -893
- package/dist/cli.js.map +4 -4
- package/package.json +5 -3
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.8.1",
|
|
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.186.
|
|
87
|
+
"@todesktop/shared": "^7.186.18",
|
|
88
88
|
"@types/bunyan": "^1.8.6",
|
|
89
89
|
"@types/node": "^20.8.4",
|
|
90
90
|
"@types/react": "^18.0.26",
|
|
@@ -109,11 +109,12 @@
|
|
|
109
109
|
"husky": "^4.3.0",
|
|
110
110
|
"ink-testing-library": "^2.1.0",
|
|
111
111
|
"lint-staged": "^10.2.11",
|
|
112
|
+
"package-json-type": "^1.0.3",
|
|
112
113
|
"prettier": "^2.8.1",
|
|
113
114
|
"proxyquire": "^2.1.3",
|
|
114
115
|
"sinon": "^9.0.3",
|
|
115
116
|
"typescript": "^4.9.4",
|
|
116
|
-
"typescript-strict-plugin": "^2.1
|
|
117
|
+
"typescript-strict-plugin": "^2.2.1"
|
|
117
118
|
},
|
|
118
119
|
"ava": {
|
|
119
120
|
"extensions": [
|
|
@@ -124,6 +125,7 @@
|
|
|
124
125
|
"test/**/*.ts",
|
|
125
126
|
"**/*.test.ts",
|
|
126
127
|
"**/*.test.tsx",
|
|
128
|
+
"!build/**/*",
|
|
127
129
|
"!test/fixtures/**/*",
|
|
128
130
|
"!test/utilities/**/*"
|
|
129
131
|
],
|