@todesktop/cli 1.9.3 → 1.9.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 +36 -12
- package/dist/cli.js +113 -77
- package/dist/cli.js.map +4 -4
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"name": "@todesktop/cli",
|
|
7
|
-
"version": "1.9.
|
|
7
|
+
"version": "1.9.5",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"build:dev": "esbuild src/index.ts --packages=external --bundle --sourcemap --platform=node --outfile=dist/cli.js && cp-cli dev.env .env",
|
|
26
26
|
"lint": "npm run lint:types && npm run lint:styles",
|
|
27
27
|
"lint:styles": "eslint src test .eslintrc.js && prettier --check .",
|
|
28
|
+
"format": "prettier --write .",
|
|
28
29
|
"lint:types": "tsc && tsc-strict",
|
|
29
30
|
"lint--fix": "eslint src test --fix",
|
|
30
31
|
"release": "npm run build && npx np --tag=latest",
|
|
@@ -85,8 +86,9 @@
|
|
|
85
86
|
"xdg-basedir": "^4.0.0"
|
|
86
87
|
},
|
|
87
88
|
"devDependencies": {
|
|
88
|
-
"@todesktop/shared": "^7.188.
|
|
89
|
+
"@todesktop/shared": "^7.188.64",
|
|
89
90
|
"@types/bunyan": "^1.8.6",
|
|
91
|
+
"@types/is-ci": "^3.0.4",
|
|
90
92
|
"@types/node": "^20.8.4",
|
|
91
93
|
"@types/react": "^18.0.26",
|
|
92
94
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|