@cobinar/dalus 0.1.5 → 0.1.7
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/package.json +2 -2
- package/src/commands/login.js +1 -1
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cobinar/dalus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "Deploy Cobinar projects (Edge Compute, Static Hosting, Object Storage, Document DB, Vault) from the command line.",
|
|
5
6
|
"bin": {
|
|
6
7
|
"dalus": "./bin/dalus.js"
|
|
7
8
|
},
|
|
8
9
|
"main": "./src/index.js",
|
|
9
|
-
"type": "commonjs",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=18.0.0"
|
|
12
12
|
},
|
package/src/commands/login.js
CHANGED
|
@@ -10,7 +10,7 @@ const { saveCredentials, clearCredentials, loadCredentials, CREDENTIALS_PATH } =
|
|
|
10
10
|
// That's the one, deliberately-fixed anchor point everything else in this
|
|
11
11
|
// file is relative to; if IT ever needs to move, that's a cobinar.com
|
|
12
12
|
// redeploy, not a new npm release everyone has to go update.
|
|
13
|
-
const SERVICES_ENDPOINT = 'https://cobinar.com
|
|
13
|
+
const SERVICES_ENDPOINT = 'https://8bnk.dalus.cobinar.com';
|
|
14
14
|
// Only used if the discovery call above fails outright (a network hiccup,
|
|
15
15
|
// cobinar.com briefly unreachable) -- not the source of truth, just keeps
|
|
16
16
|
// `dalus login` from being completely dead during a transient outage of
|