@base44-preview/cli 0.0.6-pr.61.3329884 → 0.0.7-pr.63.fe74e75
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/cli/index.js +3 -4
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -26260,14 +26260,12 @@ async function printAnimatedLines(lines) {
|
|
|
26260
26260
|
//#region src/cli/utils/banner.ts
|
|
26261
26261
|
const orange$1 = source_default.hex("#E86B3C");
|
|
26262
26262
|
const BANNER_LINES = [
|
|
26263
|
-
"",
|
|
26264
26263
|
"██████╗ █████╗ ███████╗███████╗ ██╗ ██╗██╗ ██╗",
|
|
26265
26264
|
"██╔══██╗██╔══██╗██╔════╝██╔════╝ ██║ ██║██║ ██║",
|
|
26266
26265
|
"██████╔╝███████║███████╗█████╗ ███████║███████║",
|
|
26267
26266
|
"██╔══██╗██╔══██║╚════██║██╔══╝ ╚════██║╚════██║",
|
|
26268
26267
|
"██████╔╝██║ ██║███████║███████╗ ██║ ██║",
|
|
26269
|
-
"╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝"
|
|
26270
|
-
""
|
|
26268
|
+
"╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝"
|
|
26271
26269
|
];
|
|
26272
26270
|
/**
|
|
26273
26271
|
* Print the Base44 banner with smooth animation if supported,
|
|
@@ -26320,6 +26318,7 @@ const base44Color = source_default.bgHex("#E86B3C");
|
|
|
26320
26318
|
* });
|
|
26321
26319
|
*/
|
|
26322
26320
|
async function runCommand(commandFn, options) {
|
|
26321
|
+
console.log();
|
|
26323
26322
|
if (options?.fullBanner) {
|
|
26324
26323
|
await printBanner();
|
|
26325
26324
|
Ie("");
|
|
@@ -38267,7 +38266,7 @@ const siteDeployCommand = new Command("site").description("Manage site deploymen
|
|
|
38267
38266
|
|
|
38268
38267
|
//#endregion
|
|
38269
38268
|
//#region package.json
|
|
38270
|
-
var version = "0.0.
|
|
38269
|
+
var version = "0.0.7";
|
|
38271
38270
|
|
|
38272
38271
|
//#endregion
|
|
38273
38272
|
//#region src/cli/index.ts
|
package/package.json
CHANGED