@todesktop/cli 1.13.0 → 1.14.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 +51 -26
- package/dist/cli.js +123 -69
- package/dist/cli.js.map +4 -4
- package/package.json +3 -3
- package/schemas/schema.json +2 -2
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.14.0",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"todesktop": "./dist/cli.js"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=16"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
21
|
"dev": "cp-cli dev.env .env && npm run build:dev && npm link",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"fast-glob": "^3.2.4",
|
|
62
62
|
"final-form": "^4.20.1",
|
|
63
63
|
"find-up": "^5.0.0",
|
|
64
|
-
"firebase": "^
|
|
64
|
+
"firebase": "^11.9.1",
|
|
65
65
|
"git-rev-sync": "^3.0.2",
|
|
66
66
|
"ink": "^3.2.0",
|
|
67
67
|
"ink-gradient": "^2.0.0",
|
package/schemas/schema.json
CHANGED
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"extends": {
|
|
36
36
|
"type": "string",
|
|
37
37
|
"minLength": 1,
|
|
38
|
-
"description": "This is the path to a base configuration file. This is especially useful for configuration sharing between staging and production
|
|
39
|
-
"examples": ["./todesktop.
|
|
38
|
+
"description": "This is the path to a base configuration file (`.json` or `.js`). This is especially useful for configuration sharing between different environments (e.g., staging and production). The base configuration file can be a relative path from the project root or an absolute path.",
|
|
39
|
+
"examples": ["./todesktop.base.json", "./todesktop.base.js"],
|
|
40
40
|
"default": null
|
|
41
41
|
},
|
|
42
42
|
"extraContentFiles": { "$ref": "#/definitions/extraContentFilesProperty" },
|