onflyt-cli 0.1.5 → 0.1.6
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 +4 -4
- package/package.json +1 -1
- package/src/App.tsx +1 -1
- package/src/components/Loading.tsx +1 -1
- package/src/index.tsx +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 || "https://deploy-api.onflyt.com";
|
|
1715
|
+
API_URL = process.env.ONFLYT_API_URL || "https://deploy-api.onflyt.com/api";
|
|
1716
1716
|
}
|
|
1717
1717
|
});
|
|
1718
1718
|
|
|
@@ -10628,7 +10628,7 @@ var bigText = (str) => {
|
|
|
10628
10628
|
return c;
|
|
10629
10629
|
}).join("");
|
|
10630
10630
|
};
|
|
10631
|
-
var Logo = () => /* @__PURE__ */ React3.createElement(Box, { flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Box, { alignItems: "center" }, /* @__PURE__ */ React3.createElement(Text2, { color: "rgb(255,191,0)" }, " \u2B21 "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "rgb(255,191,0)" }, bigText("Onflyt")), /* @__PURE__ */ React3.createElement(Text2, null, " "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "black", backgroundColor: "rgb(255,191,0)" }, " ", "
|
|
10631
|
+
var Logo = () => /* @__PURE__ */ React3.createElement(Box, { flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Box, { alignItems: "center" }, /* @__PURE__ */ React3.createElement(Text2, { color: "rgb(255,191,0)" }, " \u2B21 "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "rgb(255,191,0)" }, bigText("Onflyt")), /* @__PURE__ */ React3.createElement(Text2, null, " "), /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "black", backgroundColor: "rgb(255,191,0)" }, " ", "0.1.6-beta", " ")));
|
|
10632
10632
|
var ErrorDisplay = ({ message }) => /* @__PURE__ */ React3.createElement(Box, { flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Logo, null), /* @__PURE__ */ React3.createElement(Box, { marginTop: 1 }, /* @__PURE__ */ React3.createElement(Text2, { bold: true, color: "red" }, "\u2716 Error")), /* @__PURE__ */ React3.createElement(Box, { marginTop: 1 }, /* @__PURE__ */ React3.createElement(Text2, { color: "red" }, message)));
|
|
10633
10633
|
|
|
10634
10634
|
// src/commands/login.tsx
|
|
@@ -12990,14 +12990,14 @@ import { render } from "ink";
|
|
|
12990
12990
|
import React16 from "react";
|
|
12991
12991
|
import { Text as Text13, Box as Box12 } from "ink";
|
|
12992
12992
|
var App = () => {
|
|
12993
|
-
return /* @__PURE__ */ React16.createElement(Box12, { flexDirection: "column" }, /* @__PURE__ */ React16.createElement(Text13, { bold: true }, " \u2B21 Onflyt CLI
|
|
12993
|
+
return /* @__PURE__ */ React16.createElement(Box12, { flexDirection: "column" }, /* @__PURE__ */ React16.createElement(Text13, { bold: true }, " \u2B21 Onflyt CLI 0.1.6-beta"), /* @__PURE__ */ React16.createElement(Text13, null, "Type onflyt --help for available commands"));
|
|
12994
12994
|
};
|
|
12995
12995
|
var App_default = App;
|
|
12996
12996
|
|
|
12997
12997
|
// src/index.tsx
|
|
12998
12998
|
var cli = meow(
|
|
12999
12999
|
`
|
|
13000
|
-
Onflyt CLI
|
|
13000
|
+
Onflyt CLI 0.1.6-beta
|
|
13001
13001
|
|
|
13002
13002
|
Usage
|
|
13003
13003
|
$ onflyt <command>
|
package/package.json
CHANGED
package/src/App.tsx
CHANGED