defang 0.5.44 → 0.6.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 +1 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ The Defang CLI recognizes the following environment variables:
|
|
|
31
31
|
- `DEFANG_FABRIC` - The address of the Defang Fabric to use; defaults to `fabric-prod1.defang.dev`
|
|
32
32
|
- `DEFANG_HIDE_HINTS` - If set to `true`, hides hints in the CLI output; defaults to `false`
|
|
33
33
|
- `DEFANG_HIDE_UPDATE` - If set to `true`, hides the update notification; defaults to `false`
|
|
34
|
-
- `DEFANG_PROVIDER` - The name of the cloud provider to use, `auto` (default), `aws`, or `defang`
|
|
34
|
+
- `DEFANG_PROVIDER` - The name of the cloud provider to use, `auto` (default), `aws`, `digitalocean`, or `defang`
|
|
35
35
|
- `NO_COLOR` - If set to any value, disables color output; by default, color output is enabled depending on the terminal
|
|
36
36
|
- `TZ` - The timezone to use for log timestamps: an IANA TZ name like `UTC` or `Europe/Amsterdam`; defaults to `Local`
|
|
37
37
|
- `XDG_STATE_HOME` - The directory to use for storing state; defaults to `~/.local/state`
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "defang",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"author": "Defang Software Labs Inc.",
|
|
5
5
|
"description": "CLI for the Defang Opinionated Platform",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
8
|
-
"defang": "
|
|
8
|
+
"defang": "bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [],
|
|
11
11
|
"homepage": "https://github.com/DefangLabs/defang#readme",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsc",
|
|
34
|
+
"postbuild": "chmod +x bin/cli.js",
|
|
34
35
|
"test": "TS_NODE_PROJECT='./tsconfig-test.json' mocha -r ts-node/register --loader=ts-node/esm -trace-warnings --no-warnings=ExperimentalWarning test/*.spec.ts"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
@@ -46,7 +47,6 @@
|
|
|
46
47
|
"@babel/preset-env": "^7.24.7",
|
|
47
48
|
"@babel/preset-typescript": "^7.24.7",
|
|
48
49
|
"@types/adm-zip": "^0.5.5",
|
|
49
|
-
"@types/axios": "^0.14.0",
|
|
50
50
|
"@types/chai": "^4.3.16",
|
|
51
51
|
"@types/chai-as-promised": "^7.1.8",
|
|
52
52
|
"@types/mocha": "^10.0.7",
|
|
@@ -58,7 +58,6 @@
|
|
|
58
58
|
"chai-as-promised": "^8.0.0",
|
|
59
59
|
"cross-env": "^7.0.3",
|
|
60
60
|
"mocha": "^10.6.0",
|
|
61
|
-
"nyc": "^17.0.0",
|
|
62
61
|
"sinon": "^18.0.0",
|
|
63
62
|
"source-map-support": "^0.5.21",
|
|
64
63
|
"ts-node": "^10.9.2",
|