@base44-preview/cli 0.0.11-pr.83.b92b050 → 0.0.12-pr.84.04d43c0
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 +4 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -16832,7 +16832,7 @@ async function deployFunctions(functions) {
|
|
|
16832
16832
|
const payload = { functions: functions.map(toDeployPayloadItem) };
|
|
16833
16833
|
const response = await appClient.put("backend-functions", {
|
|
16834
16834
|
json: payload,
|
|
16835
|
-
timeout:
|
|
16835
|
+
timeout: 12e4
|
|
16836
16836
|
});
|
|
16837
16837
|
return DeployFunctionsResponseSchema.parse(await response.json());
|
|
16838
16838
|
}
|
|
@@ -26231,6 +26231,7 @@ var source_default = chalk;
|
|
|
26231
26231
|
const theme = {
|
|
26232
26232
|
colors: {
|
|
26233
26233
|
base44Orange: source_default.hex("#E86B3C"),
|
|
26234
|
+
base44OrangeBackground: source_default.bgHex("#E86B3C"),
|
|
26234
26235
|
shinyOrange: source_default.hex("#FFD700"),
|
|
26235
26236
|
links: source_default.hex("#00D4FF"),
|
|
26236
26237
|
white: source_default.white
|
|
@@ -26373,7 +26374,7 @@ async function runCommand(commandFn, options) {
|
|
|
26373
26374
|
if (options?.fullBanner) {
|
|
26374
26375
|
await printBanner();
|
|
26375
26376
|
Ie("");
|
|
26376
|
-
} else Ie(theme.colors.
|
|
26377
|
+
} else Ie(theme.colors.base44OrangeBackground(" Base 44 "));
|
|
26377
26378
|
await loadProjectEnv();
|
|
26378
26379
|
try {
|
|
26379
26380
|
if (options?.requireAuth) {
|
|
@@ -39001,7 +39002,7 @@ const siteDeployCommand = new Command("site").description("Manage site deploymen
|
|
|
39001
39002
|
|
|
39002
39003
|
//#endregion
|
|
39003
39004
|
//#region package.json
|
|
39004
|
-
var version = "0.0.
|
|
39005
|
+
var version = "0.0.12";
|
|
39005
39006
|
|
|
39006
39007
|
//#endregion
|
|
39007
39008
|
//#region src/cli/index.ts
|
package/package.json
CHANGED