onflyt-cli 0.1.2 → 0.1.3
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1712,7 +1712,7 @@ var init_config = __esm({
|
|
|
1712
1712
|
CONFIG_DIR = join(homedir(), ".onflyt");
|
|
1713
1713
|
CONFIG_FILE = join(CONFIG_DIR, "config.json");
|
|
1714
1714
|
PROJECT_CONFIG_FILE = "onflyt.json";
|
|
1715
|
-
API_URL = process.env.ONFLYT_API_URL || "";
|
|
1715
|
+
API_URL = process.env.ONFLYT_API_URL || "https://deploy-api.miiglu.com";
|
|
1716
1716
|
}
|
|
1717
1717
|
});
|
|
1718
1718
|
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -6,7 +6,7 @@ const CONFIG_DIR = join(homedir(), ".onflyt");
|
|
|
6
6
|
const CONFIG_FILE = join(CONFIG_DIR, "config.json");
|
|
7
7
|
const PROJECT_CONFIG_FILE = "onflyt.json";
|
|
8
8
|
|
|
9
|
-
export const API_URL = process.env.ONFLYT_API_URL || "";
|
|
9
|
+
export const API_URL = process.env.ONFLYT_API_URL || "__ONFLYT_API_URL__";
|
|
10
10
|
|
|
11
11
|
export interface Config {
|
|
12
12
|
token?: string;
|