@base44-preview/cli 0.1.14-pr.626.999301d → 0.1.15-pr.626.2df644b
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 +608 -273
- package/dist/cli/index.js.map +37 -27
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -31177,7 +31177,7 @@ function cleanDoc(doc) {
|
|
|
31177
31177
|
return mapDoc(doc, (currentDoc) => cleanDocFn(currentDoc));
|
|
31178
31178
|
}
|
|
31179
31179
|
function replaceEndOfLine(doc, replacement = literalline) {
|
|
31180
|
-
return mapDoc(doc, (currentDoc) => typeof currentDoc === "string" ?
|
|
31180
|
+
return mapDoc(doc, (currentDoc) => typeof currentDoc === "string" ? join30(replacement, currentDoc.split(`
|
|
31181
31181
|
`)) : currentDoc);
|
|
31182
31182
|
}
|
|
31183
31183
|
function canBreakFn(doc) {
|
|
@@ -31257,7 +31257,7 @@ function indentIfBreak(contents, options) {
|
|
|
31257
31257
|
negate: options.negate
|
|
31258
31258
|
};
|
|
31259
31259
|
}
|
|
31260
|
-
function
|
|
31260
|
+
function join30(separator, docs) {
|
|
31261
31261
|
assertDoc(separator);
|
|
31262
31262
|
assertDocArray(docs);
|
|
31263
31263
|
const parts = [];
|
|
@@ -31968,7 +31968,7 @@ var init_doc = __esm(() => {
|
|
|
31968
31968
|
MODE_FLAT = Symbol("MODE_FLAT");
|
|
31969
31969
|
DOC_FILL_PRINTED_LENGTH = Symbol("DOC_FILL_PRINTED_LENGTH");
|
|
31970
31970
|
builders = {
|
|
31971
|
-
join:
|
|
31971
|
+
join: join30,
|
|
31972
31972
|
line,
|
|
31973
31973
|
softline,
|
|
31974
31974
|
hardline,
|
|
@@ -228634,6 +228634,10 @@ class InternalError extends SystemError {
|
|
|
228634
228634
|
}
|
|
228635
228635
|
}
|
|
228636
228636
|
|
|
228637
|
+
class ResourceDeploymentError extends SystemError {
|
|
228638
|
+
code = "RESOURCE_DEPLOYMENT_FAILED";
|
|
228639
|
+
}
|
|
228640
|
+
|
|
228637
228641
|
class TypeGenerationError extends SystemError {
|
|
228638
228642
|
code = "TYPE_GENERATION_ERROR";
|
|
228639
228643
|
constructor(message, entityName, cause) {
|
|
@@ -228779,7 +228783,7 @@ function normalizeBase44Env() {
|
|
|
228779
228783
|
loadProjectEnvFiles();
|
|
228780
228784
|
|
|
228781
228785
|
// src/cli/index.ts
|
|
228782
|
-
import { dirname as
|
|
228786
|
+
import { dirname as dirname29, join as join39 } from "node:path";
|
|
228783
228787
|
import { fileURLToPath as fileURLToPath6 } from "node:url";
|
|
228784
228788
|
|
|
228785
228789
|
// ../../node_modules/@clack/core/dist/index.mjs
|
|
@@ -229905,8 +229909,10 @@ var {
|
|
|
229905
229909
|
Help: Help2
|
|
229906
229910
|
} = exports_commander;
|
|
229907
229911
|
|
|
229908
|
-
// src/cli/commands/
|
|
229909
|
-
|
|
229912
|
+
// src/cli/commands/functions/parseNames.ts
|
|
229913
|
+
function parseNames(args) {
|
|
229914
|
+
return args.flatMap((arg) => arg.split(",")).map((n) => n.trim()).filter(Boolean);
|
|
229915
|
+
}
|
|
229910
229916
|
// ../../node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
229911
229917
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
229912
229918
|
var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
@@ -230720,6 +230726,7 @@ var ProjectConfigSchema = object({
|
|
|
230720
230726
|
site: SiteConfigSchema.optional(),
|
|
230721
230727
|
entitiesDir: string2().optional().default("entities"),
|
|
230722
230728
|
functionsDir: string2().optional().default("functions"),
|
|
230729
|
+
actorsDir: string2().optional().default("actors"),
|
|
230723
230730
|
agentsDir: string2().optional().default("agents"),
|
|
230724
230731
|
agentSkillsDir: string2().optional().default("agent-skills"),
|
|
230725
230732
|
connectorsDir: string2().optional().default("connectors"),
|
|
@@ -236672,7 +236679,7 @@ async function getSiteUrl() {
|
|
|
236672
236679
|
return result.data.url;
|
|
236673
236680
|
}
|
|
236674
236681
|
// src/core/project/config.ts
|
|
236675
|
-
import { dirname as
|
|
236682
|
+
import { dirname as dirname10, join as join12 } from "node:path";
|
|
236676
236683
|
|
|
236677
236684
|
// src/core/project/plugins.ts
|
|
236678
236685
|
import { createRequire as createRequire2 } from "node:module";
|
|
@@ -236710,6 +236717,159 @@ function markPluginEntities(entities, pluginNamespace) {
|
|
|
236710
236717
|
}));
|
|
236711
236718
|
}
|
|
236712
236719
|
|
|
236720
|
+
// src/core/resources/actor/schema.ts
|
|
236721
|
+
var RESERVED_NAMES = new Set(("await break case catch class const continue debugger default delete do else " + "enum export extends false finally for function if import in instanceof let " + "new null return static super switch this throw true try typeof var void " + "while with yield implements interface package private protected public " + "eval arguments").split(" "));
|
|
236722
|
+
var ActorNameSchema = string2().regex(/^[A-Za-z_][A-Za-z0-9_]{0,127}$(?![\s\S])/, "Actor names must be JavaScript identifiers of at most 128 characters (letters, digits, and underscores)").refine((name) => !RESERVED_NAMES.has(name), {
|
|
236723
|
+
message: "Actor names cannot be JavaScript reserved words"
|
|
236724
|
+
});
|
|
236725
|
+
function validateActorName(name) {
|
|
236726
|
+
const result = ActorNameSchema.safeParse(name);
|
|
236727
|
+
if (!result.success) {
|
|
236728
|
+
throw new SchemaValidationError(`Invalid actor name '${name}'`, result.error);
|
|
236729
|
+
}
|
|
236730
|
+
}
|
|
236731
|
+
var ActorDefinitionSchema = object({
|
|
236732
|
+
name: ActorNameSchema,
|
|
236733
|
+
entry: _enum(["entry.ts", "entry.js"]),
|
|
236734
|
+
entryPath: string2().min(1),
|
|
236735
|
+
filePaths: array(string2()).min(1),
|
|
236736
|
+
source: object({ type: literal("project") })
|
|
236737
|
+
});
|
|
236738
|
+
var ActorDeployPayloadSchema = object({
|
|
236739
|
+
entry: _enum(["entry.ts", "entry.js"]),
|
|
236740
|
+
files: array(object({ path: string2().min(1), content: string2() })).min(1)
|
|
236741
|
+
});
|
|
236742
|
+
var DeployActorResponseSchema = object({
|
|
236743
|
+
status: _enum(["deployed", "unchanged"]),
|
|
236744
|
+
warnings: array(string2()).optional().default([])
|
|
236745
|
+
});
|
|
236746
|
+
var DeleteActorResponseSchema = object({ status: literal("deleted"), handler_name: ActorNameSchema }).transform((data) => ({
|
|
236747
|
+
status: data.status,
|
|
236748
|
+
handlerName: data.handler_name
|
|
236749
|
+
}));
|
|
236750
|
+
|
|
236751
|
+
// src/core/resources/actor/api.ts
|
|
236752
|
+
async function deploySingleActor(name, payload) {
|
|
236753
|
+
validateActorName(name);
|
|
236754
|
+
const input = ActorDeployPayloadSchema.safeParse(payload);
|
|
236755
|
+
if (!input.success)
|
|
236756
|
+
throw new SchemaValidationError("Invalid actor deployment", input.error);
|
|
236757
|
+
let response;
|
|
236758
|
+
try {
|
|
236759
|
+
response = await getAppClient().put(`actors/${encodeURIComponent(name)}`, {
|
|
236760
|
+
json: input.data,
|
|
236761
|
+
timeout: false
|
|
236762
|
+
});
|
|
236763
|
+
} catch (error) {
|
|
236764
|
+
throw await ApiError.fromHttpError(error, `deploying actor "${name}"`);
|
|
236765
|
+
}
|
|
236766
|
+
const result = DeployActorResponseSchema.safeParse(await response.json());
|
|
236767
|
+
if (!result.success)
|
|
236768
|
+
throw new SchemaValidationError("Invalid actor deployment response", result.error);
|
|
236769
|
+
return result.data;
|
|
236770
|
+
}
|
|
236771
|
+
async function deleteSingleActor(name) {
|
|
236772
|
+
validateActorName(name);
|
|
236773
|
+
let response;
|
|
236774
|
+
try {
|
|
236775
|
+
response = await getAppClient().delete(`actors/${encodeURIComponent(name)}`, { timeout: 60000 });
|
|
236776
|
+
} catch (error) {
|
|
236777
|
+
throw await ApiError.fromHttpError(error, `deleting actor "${name}"`);
|
|
236778
|
+
}
|
|
236779
|
+
const result = DeleteActorResponseSchema.safeParse(await response.json());
|
|
236780
|
+
if (!result.success)
|
|
236781
|
+
throw new SchemaValidationError("Invalid actor deletion response", result.error);
|
|
236782
|
+
return result.data;
|
|
236783
|
+
}
|
|
236784
|
+
// src/core/resources/actor/config.ts
|
|
236785
|
+
import { basename as basename3, dirname as dirname6, join as join5, relative } from "node:path";
|
|
236786
|
+
async function readAllActors(actorsDir) {
|
|
236787
|
+
if (!await pathExists(actorsDir))
|
|
236788
|
+
return [];
|
|
236789
|
+
const entries = await globby(ENTRY_FILE_GLOB, {
|
|
236790
|
+
cwd: actorsDir,
|
|
236791
|
+
absolute: true,
|
|
236792
|
+
ignore: ENTRY_IGNORE_DOT_PATHS
|
|
236793
|
+
});
|
|
236794
|
+
const actors = [];
|
|
236795
|
+
const names = new Set;
|
|
236796
|
+
for (const entryPath of entries.sort()) {
|
|
236797
|
+
const actorDir = dirname6(entryPath);
|
|
236798
|
+
const name = relative(actorsDir, actorDir).split(/[/\\]/).join("/");
|
|
236799
|
+
if (!name) {
|
|
236800
|
+
throw new InvalidInputError("entry.ts or entry.js found directly in the actors directory — it must be inside a named subfolder");
|
|
236801
|
+
}
|
|
236802
|
+
if (name.includes("/")) {
|
|
236803
|
+
throw new InvalidInputError(`Invalid actor name '${name}' — actors cannot be nested`);
|
|
236804
|
+
}
|
|
236805
|
+
validateActorName(name);
|
|
236806
|
+
if (names.has(name)) {
|
|
236807
|
+
throw new ConfigInvalidError(`Duplicate actor name "${name}" in ${actorsDir}`, actorsDir);
|
|
236808
|
+
}
|
|
236809
|
+
names.add(name);
|
|
236810
|
+
const filePaths = (await globby(BACKEND_FILE_GLOB, { cwd: actorDir, absolute: true })).sort();
|
|
236811
|
+
const entry = basename3(entryPath) === "entry.js" ? "entry.js" : "entry.ts";
|
|
236812
|
+
actors.push({
|
|
236813
|
+
name,
|
|
236814
|
+
entry,
|
|
236815
|
+
entryPath: join5(actorDir, entry),
|
|
236816
|
+
filePaths,
|
|
236817
|
+
source: { type: "project" }
|
|
236818
|
+
});
|
|
236819
|
+
}
|
|
236820
|
+
return actors;
|
|
236821
|
+
}
|
|
236822
|
+
// src/core/resources/actor/deploy.ts
|
|
236823
|
+
import { dirname as dirname7, relative as relative2 } from "node:path";
|
|
236824
|
+
function actorOperationError(name, error) {
|
|
236825
|
+
return {
|
|
236826
|
+
name,
|
|
236827
|
+
status: "error",
|
|
236828
|
+
error: error instanceof Error ? error.message : String(error),
|
|
236829
|
+
...error instanceof ApiError ? { statusCode: error.statusCode, requestId: error.requestId } : {}
|
|
236830
|
+
};
|
|
236831
|
+
}
|
|
236832
|
+
function describeActorResult(result) {
|
|
236833
|
+
if (result.status !== "error")
|
|
236834
|
+
return `${result.name}: ${result.status}`;
|
|
236835
|
+
const context = [
|
|
236836
|
+
result.statusCode === undefined ? undefined : `HTTP ${result.statusCode}`,
|
|
236837
|
+
result.requestId ? `request ${result.requestId}` : undefined
|
|
236838
|
+
].filter(Boolean).join(", ");
|
|
236839
|
+
return `${result.name}: error — ${result.error}${context ? ` (${context})` : ""}`;
|
|
236840
|
+
}
|
|
236841
|
+
async function deployOne(actor) {
|
|
236842
|
+
const start = Date.now();
|
|
236843
|
+
try {
|
|
236844
|
+
const actorDir = dirname7(actor.entryPath);
|
|
236845
|
+
const files = await Promise.all(actor.filePaths.map(async (filePath) => ({
|
|
236846
|
+
path: relative2(actorDir, filePath).split(/[/\\]/).join("/"),
|
|
236847
|
+
content: await readTextFile(filePath)
|
|
236848
|
+
})));
|
|
236849
|
+
const response = await deploySingleActor(actor.name, {
|
|
236850
|
+
entry: actor.entry,
|
|
236851
|
+
files
|
|
236852
|
+
});
|
|
236853
|
+
return { name: actor.name, ...response, durationMs: Date.now() - start };
|
|
236854
|
+
} catch (error) {
|
|
236855
|
+
return actorOperationError(actor.name, error);
|
|
236856
|
+
}
|
|
236857
|
+
}
|
|
236858
|
+
async function deployActorsSequentially(actors, options) {
|
|
236859
|
+
const results = [];
|
|
236860
|
+
for (const actor of actors) {
|
|
236861
|
+
options?.onStart?.(actor.name);
|
|
236862
|
+
const result = await deployOne(actor);
|
|
236863
|
+
results.push(result);
|
|
236864
|
+
options?.onResult?.(result);
|
|
236865
|
+
}
|
|
236866
|
+
return results;
|
|
236867
|
+
}
|
|
236868
|
+
// src/core/resources/actor/resource.ts
|
|
236869
|
+
var actorResource = {
|
|
236870
|
+
readAll: readAllActors,
|
|
236871
|
+
push: deployActorsSequentially
|
|
236872
|
+
};
|
|
236713
236873
|
// src/core/resources/agent/schema.ts
|
|
236714
236874
|
var EntityOperationSchema = _enum(["create", "update", "delete", "read"]);
|
|
236715
236875
|
var EntityToolConfigSchema = object({
|
|
@@ -236788,7 +236948,7 @@ async function fetchAgents() {
|
|
|
236788
236948
|
return result.data;
|
|
236789
236949
|
}
|
|
236790
236950
|
// src/core/resources/agent/config.ts
|
|
236791
|
-
import { join as
|
|
236951
|
+
import { join as join6, normalize } from "node:path";
|
|
236792
236952
|
import { isDeepStrictEqual } from "node:util";
|
|
236793
236953
|
async function readAgentFile(agentPath) {
|
|
236794
236954
|
const raw = await readJsonFile(agentPath);
|
|
@@ -236833,12 +236993,12 @@ async function readAllAgents(agentsDir) {
|
|
|
236833
236993
|
return [...nameToEntry.values()].map((e) => e.data);
|
|
236834
236994
|
}
|
|
236835
236995
|
function findAvailablePath(agentsDir, name, claimedPaths) {
|
|
236836
|
-
const base =
|
|
236996
|
+
const base = join6(agentsDir, `${name}.${CONFIG_FILE_EXTENSION}`);
|
|
236837
236997
|
if (!claimedPaths.has(base)) {
|
|
236838
236998
|
return base;
|
|
236839
236999
|
}
|
|
236840
237000
|
for (let i = 1;; i++) {
|
|
236841
|
-
const candidate =
|
|
237001
|
+
const candidate = join6(agentsDir, `${name}_${i}.${CONFIG_FILE_EXTENSION}`);
|
|
236842
237002
|
if (!claimedPaths.has(candidate)) {
|
|
236843
237003
|
return candidate;
|
|
236844
237004
|
}
|
|
@@ -236953,7 +237113,7 @@ async function pushAgentSkills(skills) {
|
|
|
236953
237113
|
}
|
|
236954
237114
|
// src/core/resources/agent-skill/config.ts
|
|
236955
237115
|
var import_front_matter = __toESM(require_front_matter(), 1);
|
|
236956
|
-
import { join as
|
|
237116
|
+
import { join as join7 } from "node:path";
|
|
236957
237117
|
|
|
236958
237118
|
// ../../node_modules/yaml/dist/index.js
|
|
236959
237119
|
var composer = require_composer();
|
|
@@ -237039,7 +237199,7 @@ async function writeAgentSkills(dir, remote) {
|
|
|
237039
237199
|
const deleted = [];
|
|
237040
237200
|
for (const skill of existing) {
|
|
237041
237201
|
if (!remoteNames.has(skill.name)) {
|
|
237042
|
-
await deleteFile(
|
|
237202
|
+
await deleteFile(join7(dir, `${skill.name}.md`));
|
|
237043
237203
|
deleted.push(skill.name);
|
|
237044
237204
|
}
|
|
237045
237205
|
}
|
|
@@ -237050,7 +237210,7 @@ async function writeAgentSkills(dir, remote) {
|
|
|
237050
237210
|
if (prev && prev.description === skill.description && prev.body === skill.body) {
|
|
237051
237211
|
continue;
|
|
237052
237212
|
}
|
|
237053
|
-
await writeFile(
|
|
237213
|
+
await writeFile(join7(dir, `${skill.name}.md`), serializeSkillFile(skill));
|
|
237054
237214
|
written.push(skill.name);
|
|
237055
237215
|
}
|
|
237056
237216
|
return { written, deleted };
|
|
@@ -237176,7 +237336,7 @@ async function pushAuthConfigToApi(config) {
|
|
|
237176
237336
|
return result.data.authConfig;
|
|
237177
237337
|
}
|
|
237178
237338
|
// src/core/resources/auth-config/config.ts
|
|
237179
|
-
import { join as
|
|
237339
|
+
import { join as join8 } from "node:path";
|
|
237180
237340
|
import { isDeepStrictEqual as isDeepStrictEqual2 } from "node:util";
|
|
237181
237341
|
var AUTH_CONFIG_FILENAME = `config.${CONFIG_FILE_EXTENSION}`;
|
|
237182
237342
|
var DEFAULT_AUTH_CONFIG = {
|
|
@@ -237192,7 +237352,7 @@ var DEFAULT_AUTH_CONFIG = {
|
|
|
237192
237352
|
useWorkspaceSSO: false
|
|
237193
237353
|
};
|
|
237194
237354
|
function getAuthConfigPath(authDir) {
|
|
237195
|
-
return
|
|
237355
|
+
return join8(authDir, AUTH_CONFIG_FILENAME);
|
|
237196
237356
|
}
|
|
237197
237357
|
async function readAuthConfig(authDir) {
|
|
237198
237358
|
const filePath = getAuthConfigPath(authDir);
|
|
@@ -237844,7 +238004,7 @@ async function removeStripe() {
|
|
|
237844
238004
|
return result.data;
|
|
237845
238005
|
}
|
|
237846
238006
|
// src/core/resources/connector/config.ts
|
|
237847
|
-
import { join as
|
|
238007
|
+
import { join as join9 } from "node:path";
|
|
237848
238008
|
import { isDeepStrictEqual as isDeepStrictEqual3 } from "node:util";
|
|
237849
238009
|
async function readConnectorFile(connectorPath) {
|
|
237850
238010
|
const parsed = await readJsonFile(connectorPath);
|
|
@@ -237905,7 +238065,7 @@ async function writeConnectors(connectorsDir, remoteConnectors) {
|
|
|
237905
238065
|
if (existing && isDeepStrictEqual3(existing.data, connector)) {
|
|
237906
238066
|
continue;
|
|
237907
238067
|
}
|
|
237908
|
-
const filePath = existing?.filePath ??
|
|
238068
|
+
const filePath = existing?.filePath ?? join9(connectorsDir, `${connector.type}.${CONFIG_FILE_EXTENSION}`);
|
|
237909
238069
|
await writeJsonFile(filePath, connector);
|
|
237910
238070
|
written.push(connector.type);
|
|
237911
238071
|
}
|
|
@@ -238511,7 +238671,7 @@ async function fetchFunctionLogs(functionName, filters = {}) {
|
|
|
238511
238671
|
return result.data;
|
|
238512
238672
|
}
|
|
238513
238673
|
// src/core/resources/function/config.ts
|
|
238514
|
-
import { basename as
|
|
238674
|
+
import { basename as basename4, dirname as dirname8, join as join10, relative as relative3, resolve as resolve2 } from "node:path";
|
|
238515
238675
|
async function readSharedFiles(functionsDir) {
|
|
238516
238676
|
const sharedDir = resolve2(functionsDir, "..", "shared");
|
|
238517
238677
|
if (!await pathExists(sharedDir)) {
|
|
@@ -238529,8 +238689,8 @@ async function readFunctionConfig(configPath) {
|
|
|
238529
238689
|
}
|
|
238530
238690
|
async function readFunction(configPath, sharedFiles) {
|
|
238531
238691
|
const config = await readFunctionConfig(configPath);
|
|
238532
|
-
const functionDir =
|
|
238533
|
-
const entryPath =
|
|
238692
|
+
const functionDir = dirname8(configPath);
|
|
238693
|
+
const entryPath = join10(functionDir, config.entry);
|
|
238534
238694
|
if (!await pathExists(entryPath)) {
|
|
238535
238695
|
throw new InvalidInputError(`Function entry file not found: ${entryPath} (referenced in ${configPath})`, {
|
|
238536
238696
|
hints: [{ message: "Check the 'entry' field in your function config" }]
|
|
@@ -238562,18 +238722,18 @@ async function readAllFunctions(functionsDir) {
|
|
|
238562
238722
|
absolute: true,
|
|
238563
238723
|
ignore: ENTRY_IGNORE_DOT_PATHS
|
|
238564
238724
|
});
|
|
238565
|
-
const configFilesDirs = new Set(configFiles.map((f) =>
|
|
238566
|
-
const entryFilesWithoutConfig = entryFiles.filter((entryFile) => !configFilesDirs.has(
|
|
238725
|
+
const configFilesDirs = new Set(configFiles.map((f) => dirname8(f)));
|
|
238726
|
+
const entryFilesWithoutConfig = entryFiles.filter((entryFile) => !configFilesDirs.has(dirname8(entryFile)));
|
|
238567
238727
|
const sharedFiles = await readSharedFiles(functionsDir);
|
|
238568
238728
|
const functionsFromConfig = await Promise.all(configFiles.map((configPath) => readFunction(configPath, sharedFiles)));
|
|
238569
238729
|
const functionsWithoutConfig = await Promise.all(entryFilesWithoutConfig.map(async (entryFile) => {
|
|
238570
|
-
const functionDir =
|
|
238730
|
+
const functionDir = dirname8(entryFile);
|
|
238571
238731
|
const filePaths = await globby(BACKEND_FILE_GLOB, {
|
|
238572
238732
|
cwd: functionDir,
|
|
238573
238733
|
absolute: true
|
|
238574
238734
|
});
|
|
238575
238735
|
const allFilePaths = [...new Set([...filePaths, ...sharedFiles])];
|
|
238576
|
-
const name =
|
|
238736
|
+
const name = relative3(functionsDir, functionDir).split(/[/\\]/).join("/");
|
|
238577
238737
|
if (!name) {
|
|
238578
238738
|
throw new InvalidInputError("entry.ts found directly in the functions directory — it must be inside a named subfolder", {
|
|
238579
238739
|
hints: [
|
|
@@ -238583,7 +238743,7 @@ async function readAllFunctions(functionsDir) {
|
|
|
238583
238743
|
]
|
|
238584
238744
|
});
|
|
238585
238745
|
}
|
|
238586
|
-
const entry =
|
|
238746
|
+
const entry = basename4(entryFile);
|
|
238587
238747
|
const functionData = {
|
|
238588
238748
|
name,
|
|
238589
238749
|
entry,
|
|
@@ -238610,17 +238770,17 @@ async function readAllFunctions(functionsDir) {
|
|
|
238610
238770
|
return functions;
|
|
238611
238771
|
}
|
|
238612
238772
|
// src/core/resources/function/deploy.ts
|
|
238613
|
-
import { dirname as
|
|
238773
|
+
import { dirname as dirname9, relative as relative4 } from "node:path";
|
|
238614
238774
|
async function loadFunctionCode(fn) {
|
|
238615
|
-
const functionDir =
|
|
238775
|
+
const functionDir = dirname9(fn.entryPath);
|
|
238616
238776
|
const resolvedFiles = await Promise.all(fn.filePaths.map(async (filePath) => {
|
|
238617
238777
|
const content = await readTextFile(filePath);
|
|
238618
|
-
const path =
|
|
238778
|
+
const path = relative4(functionDir, filePath).split(/[/\\]/).join("/");
|
|
238619
238779
|
return { path, content };
|
|
238620
238780
|
}));
|
|
238621
238781
|
return { ...fn, files: resolvedFiles };
|
|
238622
238782
|
}
|
|
238623
|
-
async function
|
|
238783
|
+
async function deployOne2(fn) {
|
|
238624
238784
|
const start = Date.now();
|
|
238625
238785
|
try {
|
|
238626
238786
|
const functionWithCode = await loadFunctionCode(fn);
|
|
@@ -238648,7 +238808,7 @@ async function deployFunctionsSequentially(functions, options) {
|
|
|
238648
238808
|
const results = [];
|
|
238649
238809
|
for (const fn of functions) {
|
|
238650
238810
|
options?.onStart?.([fn.name]);
|
|
238651
|
-
const result = await
|
|
238811
|
+
const result = await deployOne2(fn);
|
|
238652
238812
|
results.push(result);
|
|
238653
238813
|
options?.onResult?.(result);
|
|
238654
238814
|
}
|
|
@@ -238679,14 +238839,14 @@ async function pruneRemovedFunctions(localFunctionNames, options) {
|
|
|
238679
238839
|
return results;
|
|
238680
238840
|
}
|
|
238681
238841
|
// src/core/resources/function/pull.ts
|
|
238682
|
-
import { join as
|
|
238842
|
+
import { join as join11 } from "node:path";
|
|
238683
238843
|
import { isDeepStrictEqual as isDeepStrictEqual4 } from "node:util";
|
|
238684
238844
|
async function writeFunctions(functionsDir, functions) {
|
|
238685
238845
|
const written = [];
|
|
238686
238846
|
const skipped = [];
|
|
238687
238847
|
for (const fn of functions) {
|
|
238688
|
-
const functionDir =
|
|
238689
|
-
const configPath =
|
|
238848
|
+
const functionDir = join11(functionsDir, fn.name);
|
|
238849
|
+
const configPath = join11(functionDir, "function.jsonc");
|
|
238690
238850
|
if (await isFunctionUnchanged(functionDir, fn)) {
|
|
238691
238851
|
skipped.push(fn.name);
|
|
238692
238852
|
continue;
|
|
@@ -238700,7 +238860,7 @@ async function writeFunctions(functionsDir, functions) {
|
|
|
238700
238860
|
}
|
|
238701
238861
|
await writeJsonFile(configPath, config);
|
|
238702
238862
|
for (const file of fn.files) {
|
|
238703
|
-
await writeFile(
|
|
238863
|
+
await writeFile(join11(functionDir, file.path), file.content);
|
|
238704
238864
|
}
|
|
238705
238865
|
written.push(fn.name);
|
|
238706
238866
|
}
|
|
@@ -238710,7 +238870,7 @@ async function isFunctionUnchanged(functionDir, fn) {
|
|
|
238710
238870
|
if (!await pathExists(functionDir)) {
|
|
238711
238871
|
return false;
|
|
238712
238872
|
}
|
|
238713
|
-
const configPath =
|
|
238873
|
+
const configPath = join11(functionDir, "function.jsonc");
|
|
238714
238874
|
try {
|
|
238715
238875
|
const localConfig = await readJsonFile(configPath);
|
|
238716
238876
|
if (localConfig.entry !== fn.entry) {
|
|
@@ -238723,7 +238883,7 @@ async function isFunctionUnchanged(functionDir, fn) {
|
|
|
238723
238883
|
return false;
|
|
238724
238884
|
}
|
|
238725
238885
|
for (const file of fn.files) {
|
|
238726
|
-
const filePath =
|
|
238886
|
+
const filePath = join11(functionDir, file.path);
|
|
238727
238887
|
if (!await pathExists(filePath)) {
|
|
238728
238888
|
return false;
|
|
238729
238889
|
}
|
|
@@ -238895,10 +239055,17 @@ class ProjectConfigReader {
|
|
|
238895
239055
|
...pluginResources.functions
|
|
238896
239056
|
];
|
|
238897
239057
|
this.validateFunctionNames(functions, configPath);
|
|
239058
|
+
const functionNames = new Set(functions.map((fn) => fn.name));
|
|
239059
|
+
for (const actor of localResources.actors) {
|
|
239060
|
+
if (functionNames.has(actor.name)) {
|
|
239061
|
+
throw new ConfigInvalidError(`'${actor.name}' exists as both a backend function and an actor`, configPath);
|
|
239062
|
+
}
|
|
239063
|
+
}
|
|
238898
239064
|
return {
|
|
238899
239065
|
project,
|
|
238900
239066
|
entities,
|
|
238901
239067
|
functions,
|
|
239068
|
+
actors: localResources.actors,
|
|
238902
239069
|
agents: localResources.agents,
|
|
238903
239070
|
agentSkills: localResources.agentSkills,
|
|
238904
239071
|
connectors: localResources.connectors,
|
|
@@ -238926,17 +239093,34 @@ class ProjectConfigReader {
|
|
|
238926
239093
|
}
|
|
238927
239094
|
return result.data;
|
|
238928
239095
|
}
|
|
238929
|
-
async readProjectResources(configPath, project) {
|
|
238930
|
-
const configDir =
|
|
238931
|
-
const [
|
|
238932
|
-
|
|
238933
|
-
|
|
238934
|
-
|
|
238935
|
-
|
|
238936
|
-
|
|
238937
|
-
|
|
239096
|
+
async readProjectResources(configPath, project, includeActors = true) {
|
|
239097
|
+
const configDir = dirname10(configPath);
|
|
239098
|
+
const [
|
|
239099
|
+
entities,
|
|
239100
|
+
functions,
|
|
239101
|
+
actors,
|
|
239102
|
+
agents,
|
|
239103
|
+
agentSkills,
|
|
239104
|
+
connectors,
|
|
239105
|
+
authConfig
|
|
239106
|
+
] = await Promise.all([
|
|
239107
|
+
entityResource.readAll(join12(configDir, project.entitiesDir)),
|
|
239108
|
+
functionResource.readAll(join12(configDir, project.functionsDir)),
|
|
239109
|
+
includeActors ? actorResource.readAll(join12(configDir, project.actorsDir)) : Promise.resolve([]),
|
|
239110
|
+
agentResource.readAll(join12(configDir, project.agentsDir)),
|
|
239111
|
+
agentSkillResource.readAll(join12(configDir, project.agentSkillsDir)),
|
|
239112
|
+
connectorResource.readAll(join12(configDir, project.connectorsDir)),
|
|
239113
|
+
authConfigResource.readAll(join12(configDir, project.authDir))
|
|
238938
239114
|
]);
|
|
238939
|
-
return {
|
|
239115
|
+
return {
|
|
239116
|
+
entities,
|
|
239117
|
+
functions,
|
|
239118
|
+
actors,
|
|
239119
|
+
agents,
|
|
239120
|
+
agentSkills,
|
|
239121
|
+
connectors,
|
|
239122
|
+
authConfig
|
|
239123
|
+
};
|
|
238940
239124
|
}
|
|
238941
239125
|
assertPluginProjectDoesNotLoadPlugins(project, configPath) {
|
|
238942
239126
|
if (project.plugin && project.plugins.length > 0) {
|
|
@@ -238957,7 +239141,7 @@ class ProjectConfigReader {
|
|
|
238957
239141
|
this.pluginSourceByNamespace.set(namespace, source);
|
|
238958
239142
|
}
|
|
238959
239143
|
async readPluginConfig(plugin, hostConfigPath) {
|
|
238960
|
-
const pluginRoot = resolvePluginRoot(plugin.source,
|
|
239144
|
+
const pluginRoot = resolvePluginRoot(plugin.source, dirname10(hostConfigPath));
|
|
238961
239145
|
const { configPath } = await this.findConfigOrThrow(pluginRoot);
|
|
238962
239146
|
const project = await this.readConfigFile(configPath);
|
|
238963
239147
|
const namespace = requirePluginNamespace(project, plugin.source, configPath);
|
|
@@ -238965,10 +239149,11 @@ class ProjectConfigReader {
|
|
|
238965
239149
|
return { configPath, namespace, project, source: plugin.source };
|
|
238966
239150
|
}
|
|
238967
239151
|
async readPluginResources(project, configPath, namespace) {
|
|
238968
|
-
const resources = await this.readProjectResources(configPath, project);
|
|
239152
|
+
const resources = await this.readProjectResources(configPath, project, false);
|
|
238969
239153
|
return {
|
|
238970
239154
|
entities: markPluginEntities(resources.entities, namespace),
|
|
238971
239155
|
functions: namespacePluginFunctions(resources.functions, namespace),
|
|
239156
|
+
actors: [],
|
|
238972
239157
|
agents: [],
|
|
238973
239158
|
agentSkills: [],
|
|
238974
239159
|
connectors: [],
|
|
@@ -239007,6 +239192,7 @@ class ProjectConfigReader {
|
|
|
239007
239192
|
return {
|
|
239008
239193
|
entities,
|
|
239009
239194
|
functions,
|
|
239195
|
+
actors: [],
|
|
239010
239196
|
agents: [],
|
|
239011
239197
|
agentSkills: [],
|
|
239012
239198
|
connectors: [],
|
|
@@ -239041,16 +239227,16 @@ async function readProjectSettings(projectRoot) {
|
|
|
239041
239227
|
// src/core/project/template.ts
|
|
239042
239228
|
var import_ejs = __toESM(require_ejs(), 1);
|
|
239043
239229
|
var import_front_matter2 = __toESM(require_front_matter(), 1);
|
|
239044
|
-
import { dirname as
|
|
239230
|
+
import { dirname as dirname11, join as join14 } from "node:path";
|
|
239045
239231
|
|
|
239046
239232
|
// src/core/assets.ts
|
|
239047
239233
|
import { cpSync, existsSync } from "node:fs";
|
|
239048
239234
|
import { homedir as homedir2 } from "node:os";
|
|
239049
|
-
import { join as
|
|
239235
|
+
import { join as join13 } from "node:path";
|
|
239050
239236
|
// package.json
|
|
239051
239237
|
var package_default = {
|
|
239052
239238
|
name: "base44",
|
|
239053
|
-
version: "0.1.
|
|
239239
|
+
version: "0.1.15",
|
|
239054
239240
|
description: "Base44 CLI - Unified interface for managing Base44 applications",
|
|
239055
239241
|
type: "module",
|
|
239056
239242
|
bin: {
|
|
@@ -239153,21 +239339,21 @@ var package_default = {
|
|
|
239153
239339
|
};
|
|
239154
239340
|
|
|
239155
239341
|
// src/core/assets.ts
|
|
239156
|
-
var ASSETS_DIR =
|
|
239342
|
+
var ASSETS_DIR = join13(homedir2(), ".base44", "assets", package_default.version);
|
|
239157
239343
|
function getTemplatesDir() {
|
|
239158
|
-
return
|
|
239344
|
+
return join13(ASSETS_DIR, "templates");
|
|
239159
239345
|
}
|
|
239160
239346
|
function getTemplatesIndexPath() {
|
|
239161
|
-
return
|
|
239347
|
+
return join13(ASSETS_DIR, "templates", "templates.json");
|
|
239162
239348
|
}
|
|
239163
239349
|
function getBackendRuntimeDir() {
|
|
239164
|
-
return
|
|
239350
|
+
return join13(ASSETS_DIR, "backend-runtime");
|
|
239165
239351
|
}
|
|
239166
239352
|
function getDenoWrapperPath() {
|
|
239167
|
-
return
|
|
239353
|
+
return join13(getBackendRuntimeDir(), "main.ts");
|
|
239168
239354
|
}
|
|
239169
239355
|
function getExecWrapperPath() {
|
|
239170
|
-
return
|
|
239356
|
+
return join13(getBackendRuntimeDir(), "exec.ts");
|
|
239171
239357
|
}
|
|
239172
239358
|
function ensureNpmAssets(sourceDir) {
|
|
239173
239359
|
if (existsSync(ASSETS_DIR) && existsSync(getBackendRuntimeDir()))
|
|
@@ -239189,7 +239375,7 @@ async function listTemplates() {
|
|
|
239189
239375
|
}
|
|
239190
239376
|
async function renderTemplate(template, destPath, data, options = {}) {
|
|
239191
239377
|
const { skipExisting = false } = options;
|
|
239192
|
-
const templateDir =
|
|
239378
|
+
const templateDir = join14(getTemplatesDir(), template.path);
|
|
239193
239379
|
const files = await globby("**/*", {
|
|
239194
239380
|
cwd: templateDir,
|
|
239195
239381
|
dot: true,
|
|
@@ -239197,20 +239383,20 @@ async function renderTemplate(template, destPath, data, options = {}) {
|
|
|
239197
239383
|
});
|
|
239198
239384
|
const skipped = [];
|
|
239199
239385
|
for (const file of files) {
|
|
239200
|
-
const srcPath =
|
|
239386
|
+
const srcPath = join14(templateDir, file);
|
|
239201
239387
|
try {
|
|
239202
239388
|
if (file.endsWith(".ejs")) {
|
|
239203
239389
|
const rendered = await import_ejs.default.renderFile(srcPath, data);
|
|
239204
239390
|
const { attributes, body } = import_front_matter2.default(rendered);
|
|
239205
|
-
const destFile = attributes.outputFileName ?
|
|
239206
|
-
const destFilePath =
|
|
239391
|
+
const destFile = attributes.outputFileName ? join14(dirname11(file), attributes.outputFileName) : file.replace(/\.ejs$/, "");
|
|
239392
|
+
const destFilePath = join14(destPath, destFile);
|
|
239207
239393
|
if (skipExisting && await pathExists(destFilePath)) {
|
|
239208
239394
|
skipped.push(destFile);
|
|
239209
239395
|
continue;
|
|
239210
239396
|
}
|
|
239211
239397
|
await writeFile(destFilePath, body);
|
|
239212
239398
|
} else {
|
|
239213
|
-
const destFilePath =
|
|
239399
|
+
const destFilePath = join14(destPath, file);
|
|
239214
239400
|
if (skipExisting && await pathExists(destFilePath)) {
|
|
239215
239401
|
skipped.push(file);
|
|
239216
239402
|
continue;
|
|
@@ -239364,7 +239550,7 @@ async function getSiteFilePaths(outputDir) {
|
|
|
239364
239550
|
// src/core/site/deploy.ts
|
|
239365
239551
|
import { randomUUID } from "node:crypto";
|
|
239366
239552
|
import { tmpdir } from "node:os";
|
|
239367
|
-
import { join as
|
|
239553
|
+
import { join as join15 } from "node:path";
|
|
239368
239554
|
async function deploySite(siteOutputDir) {
|
|
239369
239555
|
if (!await pathExists(siteOutputDir)) {
|
|
239370
239556
|
throw new InvalidInputError(`Output directory does not exist: ${siteOutputDir}. Make sure to build your project first.`, {
|
|
@@ -239385,7 +239571,7 @@ async function deploySite(siteOutputDir) {
|
|
|
239385
239571
|
]
|
|
239386
239572
|
});
|
|
239387
239573
|
}
|
|
239388
|
-
const archivePath =
|
|
239574
|
+
const archivePath = join15(tmpdir(), `base44-site-${randomUUID()}.tar.gz`);
|
|
239389
239575
|
try {
|
|
239390
239576
|
await createArchive(siteOutputDir, archivePath);
|
|
239391
239577
|
return await uploadSite(archivePath);
|
|
@@ -239402,13 +239588,13 @@ async function createArchive(pathToArchive, targetArchivePath) {
|
|
|
239402
239588
|
}
|
|
239403
239589
|
// src/core/site/deployment.ts
|
|
239404
239590
|
import { readFile as readFile3 } from "node:fs/promises";
|
|
239405
|
-
import { join as
|
|
239591
|
+
import { join as join18 } from "node:path";
|
|
239406
239592
|
|
|
239407
239593
|
// src/core/site/manifest.ts
|
|
239408
239594
|
import { createHash } from "node:crypto";
|
|
239409
239595
|
import { createReadStream } from "node:fs";
|
|
239410
239596
|
import { stat } from "node:fs/promises";
|
|
239411
|
-
import { basename as
|
|
239597
|
+
import { basename as basename5, extname, join as join16 } from "node:path";
|
|
239412
239598
|
var MAX_ASSET_COUNT = 1e5;
|
|
239413
239599
|
var ASSETS_IGNORE_FILE = ".assetsignore";
|
|
239414
239600
|
var ALWAYS_IGNORED = new Set([
|
|
@@ -239449,6 +239635,16 @@ var MIME_TYPES = {
|
|
|
239449
239635
|
function getAssetContentType(filePath) {
|
|
239450
239636
|
return MIME_TYPES[extname(filePath).toLowerCase()] ?? "application/octet-stream";
|
|
239451
239637
|
}
|
|
239638
|
+
async function walkBuildOutput(outputDir) {
|
|
239639
|
+
const found = await globby("**/*", {
|
|
239640
|
+
cwd: outputDir,
|
|
239641
|
+
dot: true,
|
|
239642
|
+
onlyFiles: true,
|
|
239643
|
+
followSymbolicLinks: false,
|
|
239644
|
+
ignoreFiles: [ASSETS_IGNORE_FILE]
|
|
239645
|
+
});
|
|
239646
|
+
return found.filter((path) => !ALWAYS_IGNORED.has(basename5(path))).sort();
|
|
239647
|
+
}
|
|
239452
239648
|
async function hashAssetFile(appId, absolutePath) {
|
|
239453
239649
|
const hash = createHash("sha256").update(Buffer.from(appId, "utf8"));
|
|
239454
239650
|
for await (const chunk of createReadStream(absolutePath)) {
|
|
@@ -239459,19 +239655,12 @@ async function hashAssetFile(appId, absolutePath) {
|
|
|
239459
239655
|
async function buildAssetManifest(assetsDir, appId) {
|
|
239460
239656
|
const manifest = {};
|
|
239461
239657
|
const filesByHash = new Map;
|
|
239462
|
-
const
|
|
239463
|
-
cwd: assetsDir,
|
|
239464
|
-
dot: true,
|
|
239465
|
-
onlyFiles: true,
|
|
239466
|
-
followSymbolicLinks: false,
|
|
239467
|
-
ignoreFiles: [ASSETS_IGNORE_FILE]
|
|
239468
|
-
});
|
|
239469
|
-
const relativeFilePaths = found.filter((path) => !ALWAYS_IGNORED.has(basename4(path)));
|
|
239658
|
+
const relativeFilePaths = await walkBuildOutput(assetsDir);
|
|
239470
239659
|
if (relativeFilePaths.length > MAX_ASSET_COUNT) {
|
|
239471
239660
|
throw new InvalidInputError(`Too many static assets: found ${relativeFilePaths.length}, the limit is ${MAX_ASSET_COUNT} files.`);
|
|
239472
239661
|
}
|
|
239473
|
-
for (const relativePath of relativeFilePaths
|
|
239474
|
-
const absolutePath =
|
|
239662
|
+
for (const relativePath of relativeFilePaths) {
|
|
239663
|
+
const absolutePath = join16(assetsDir, ...relativePath.split("/"));
|
|
239475
239664
|
const { size } = await stat(absolutePath);
|
|
239476
239665
|
const hash = await hashAssetFile(appId, absolutePath);
|
|
239477
239666
|
manifest[`/${relativePath}`] = { hash, size };
|
|
@@ -239489,7 +239678,7 @@ async function buildAssetManifest(assetsDir, appId) {
|
|
|
239489
239678
|
|
|
239490
239679
|
// src/core/site/modules.ts
|
|
239491
239680
|
import { stat as stat2 } from "node:fs/promises";
|
|
239492
|
-
import { relative as
|
|
239681
|
+
import { relative as relative5, resolve as resolve3, sep } from "node:path";
|
|
239493
239682
|
var MAX_TOTAL_MODULE_BYTES = 40 * 1024 * 1024;
|
|
239494
239683
|
var MODULE_IGNORE = ["wrangler.json", ".dev.vars"];
|
|
239495
239684
|
var RULE_TYPE_TO_MODULE_TYPE = {
|
|
@@ -239509,7 +239698,7 @@ async function collectModules(config) {
|
|
|
239509
239698
|
});
|
|
239510
239699
|
}
|
|
239511
239700
|
const modulesByName = new Map;
|
|
239512
|
-
const entryName = toPosix(
|
|
239701
|
+
const entryName = toPosix(relative5(config.configDir, entryPath));
|
|
239513
239702
|
modulesByName.set(entryName, {
|
|
239514
239703
|
name: entryName,
|
|
239515
239704
|
absolutePath: entryPath,
|
|
@@ -239518,7 +239707,7 @@ async function collectModules(config) {
|
|
|
239518
239707
|
});
|
|
239519
239708
|
const ignore = [...MODULE_IGNORE];
|
|
239520
239709
|
if (config.assetsDirectory?.startsWith(config.configDir + sep)) {
|
|
239521
|
-
ignore.push(`${toPosix(
|
|
239710
|
+
ignore.push(`${toPosix(relative5(config.configDir, config.assetsDirectory))}/**`);
|
|
239522
239711
|
}
|
|
239523
239712
|
for (const rule of config.rules) {
|
|
239524
239713
|
const type = RULE_TYPE_TO_MODULE_TYPE[rule.type];
|
|
@@ -239825,8 +240014,8 @@ async function uploadPresignedAsset(upload, assets) {
|
|
|
239825
240014
|
}
|
|
239826
240015
|
|
|
239827
240016
|
// src/core/site/wrangler-config.ts
|
|
239828
|
-
import { dirname as
|
|
239829
|
-
var WRANGLER_REDIRECT_PATH =
|
|
240017
|
+
import { dirname as dirname12, join as join17, resolve as resolve4 } from "node:path";
|
|
240018
|
+
var WRANGLER_REDIRECT_PATH = join17(".wrangler", "deploy", "config.json");
|
|
239830
240019
|
var RedirectConfigSchema = looseObject({
|
|
239831
240020
|
configPath: string2().min(1)
|
|
239832
240021
|
});
|
|
@@ -239848,7 +240037,7 @@ var WranglerConfigSchema = looseObject({
|
|
|
239848
240037
|
upload_source_maps: boolean2().optional()
|
|
239849
240038
|
});
|
|
239850
240039
|
async function detectFullStackArtifact(projectRoot) {
|
|
239851
|
-
const redirectPath =
|
|
240040
|
+
const redirectPath = join17(projectRoot, WRANGLER_REDIRECT_PATH);
|
|
239852
240041
|
return await pathExists(redirectPath) ? redirectPath : null;
|
|
239853
240042
|
}
|
|
239854
240043
|
async function resolveWranglerConfig(redirectPath) {
|
|
@@ -239862,7 +240051,7 @@ async function resolveWranglerConfig(redirectPath) {
|
|
|
239862
240051
|
if (config.no_bundle !== true) {
|
|
239863
240052
|
throw new InvalidInputError("This framework's output requires bundling; not yet supported. Base44 only deploys pre-bundled Workers output (no_bundle: true).");
|
|
239864
240053
|
}
|
|
239865
|
-
const configDir =
|
|
240054
|
+
const configDir = dirname12(configPath);
|
|
239866
240055
|
const assetsDirectory = config.assets?.directory ? resolve4(configDir, config.assets.directory) : null;
|
|
239867
240056
|
return {
|
|
239868
240057
|
configPath,
|
|
@@ -239885,7 +240074,7 @@ async function resolveRedirectedConfigPath(redirectPath) {
|
|
|
239885
240074
|
if (!result.success) {
|
|
239886
240075
|
throw new ConfigInvalidError(`Invalid deploy redirect file: ${prettifyError(result.error)}`, redirectPath);
|
|
239887
240076
|
}
|
|
239888
|
-
const configPath = resolve4(
|
|
240077
|
+
const configPath = resolve4(dirname12(redirectPath), result.data.configPath);
|
|
239889
240078
|
if (!await pathExists(configPath)) {
|
|
239890
240079
|
throw new ConfigInvalidError(`Wrangler config referenced by ${redirectPath} does not exist: ${configPath}`, redirectPath, {
|
|
239891
240080
|
hints: [{ message: "Rebuild the project to regenerate the artifact" }]
|
|
@@ -239950,7 +240139,7 @@ async function readIndexHtml(assetsDir, assets) {
|
|
|
239950
240139
|
if (!assetsDir || !assets.manifest["/index.html"]) {
|
|
239951
240140
|
throw new InvalidInputError(`No index.html found in "${assetsDir ?? "the site output directory"}" — a static site needs one at the output directory root.`);
|
|
239952
240141
|
}
|
|
239953
|
-
return new Uint8Array(await readFile3(
|
|
240142
|
+
return new Uint8Array(await readFile3(join18(assetsDir, "index.html")));
|
|
239954
240143
|
}
|
|
239955
240144
|
function buildAssetsConfig(assetsConfig, progress) {
|
|
239956
240145
|
if (!assetsConfig)
|
|
@@ -246509,6 +246698,7 @@ function hasResourcesToDeploy(projectData) {
|
|
|
246509
246698
|
project,
|
|
246510
246699
|
entities,
|
|
246511
246700
|
functions,
|
|
246701
|
+
actors,
|
|
246512
246702
|
agents,
|
|
246513
246703
|
agentSkills,
|
|
246514
246704
|
connectors,
|
|
@@ -246517,18 +246707,20 @@ function hasResourcesToDeploy(projectData) {
|
|
|
246517
246707
|
const hasSite = Boolean(project.site?.outputDirectory);
|
|
246518
246708
|
const hasEntities = entities.length > 0;
|
|
246519
246709
|
const hasFunctions = functions.length > 0;
|
|
246710
|
+
const hasActors = actors.length > 0;
|
|
246520
246711
|
const hasAgents = agents.length > 0;
|
|
246521
246712
|
const hasAgentSkills = agentSkills.length > 0;
|
|
246522
246713
|
const hasConnectors = connectors.length > 0;
|
|
246523
246714
|
const hasAuthConfig = authConfig.length > 0;
|
|
246524
246715
|
const hasVisibility = Boolean(project.visibility);
|
|
246525
|
-
return hasEntities || hasFunctions || hasAgents || hasAgentSkills || hasConnectors || hasAuthConfig || hasVisibility || hasSite;
|
|
246716
|
+
return hasEntities || hasFunctions || hasActors || hasAgents || hasAgentSkills || hasConnectors || hasAuthConfig || hasVisibility || hasSite;
|
|
246526
246717
|
}
|
|
246527
246718
|
async function deployAll(projectData, options) {
|
|
246528
246719
|
const {
|
|
246529
246720
|
project,
|
|
246530
246721
|
entities,
|
|
246531
246722
|
functions,
|
|
246723
|
+
actors,
|
|
246532
246724
|
agents,
|
|
246533
246725
|
agentSkills,
|
|
246534
246726
|
connectors,
|
|
@@ -246539,10 +246731,33 @@ async function deployAll(projectData, options) {
|
|
|
246539
246731
|
options?.onVisibilitySet?.(project.visibility);
|
|
246540
246732
|
}
|
|
246541
246733
|
await entityResource.push(entities);
|
|
246542
|
-
await deployFunctionsSequentially(functions, {
|
|
246734
|
+
const functionResults = await deployFunctionsSequentially(functions, {
|
|
246543
246735
|
onStart: options?.onFunctionStart,
|
|
246544
246736
|
onResult: options?.onFunctionResult
|
|
246545
246737
|
});
|
|
246738
|
+
const completedStages = [
|
|
246739
|
+
...project.visibility ? [`Visibility set to ${project.visibility}`] : [],
|
|
246740
|
+
...entities.length ? [`Entities synced: ${entities.length}`] : []
|
|
246741
|
+
];
|
|
246742
|
+
const functionDetails = functionResults.map((result) => `Function ${result.name}: ${result.status}${result.error ? ` — ${result.error}` : ""}`);
|
|
246743
|
+
if (functionResults.some((result) => result.status === "error")) {
|
|
246744
|
+
throw new ResourceDeploymentError("Function deployment failed; remaining deploy stages were not run", {
|
|
246745
|
+
details: [...completedStages, ...functionDetails]
|
|
246746
|
+
});
|
|
246747
|
+
}
|
|
246748
|
+
const actorResults = await deployActorsSequentially(actors, {
|
|
246749
|
+
onStart: options?.onActorStart,
|
|
246750
|
+
onResult: options?.onActorResult
|
|
246751
|
+
});
|
|
246752
|
+
if (actorResults.some((result) => result.status === "error")) {
|
|
246753
|
+
throw new ResourceDeploymentError("Actor deployment failed; remaining deploy stages were not run", {
|
|
246754
|
+
details: [
|
|
246755
|
+
...completedStages,
|
|
246756
|
+
...functionDetails,
|
|
246757
|
+
...actorResults.map(describeActorResult)
|
|
246758
|
+
]
|
|
246759
|
+
});
|
|
246760
|
+
}
|
|
246546
246761
|
await agentSkillResource.push(agentSkills);
|
|
246547
246762
|
await agentResource.push(agents);
|
|
246548
246763
|
await authConfigResource.push(authConfig);
|
|
@@ -247027,21 +247242,21 @@ var DeclareVersionResponseSchema = object({
|
|
|
247027
247242
|
}));
|
|
247028
247243
|
var CreateVersionResponseSchema = object({
|
|
247029
247244
|
version_id: string2(),
|
|
247030
|
-
manifest_hash: string2()
|
|
247031
|
-
deduplicated: boolean2()
|
|
247245
|
+
manifest_hash: string2()
|
|
247032
247246
|
}).transform((data) => ({
|
|
247033
247247
|
versionId: data.version_id,
|
|
247034
|
-
manifestHash: data.manifest_hash
|
|
247035
|
-
deduplicated: data.deduplicated
|
|
247248
|
+
manifestHash: data.manifest_hash
|
|
247036
247249
|
}));
|
|
247037
|
-
var
|
|
247038
|
-
|
|
247250
|
+
var EnvironmentResponseSchema = object({
|
|
247251
|
+
name: string2(),
|
|
247252
|
+
version_id: string2(),
|
|
247039
247253
|
manifest_hash: string2(),
|
|
247040
|
-
|
|
247254
|
+
deployment_id: string2()
|
|
247041
247255
|
}).transform((data) => ({
|
|
247042
|
-
|
|
247256
|
+
name: data.name,
|
|
247257
|
+
versionId: data.version_id,
|
|
247043
247258
|
manifestHash: data.manifest_hash,
|
|
247044
|
-
|
|
247259
|
+
deploymentId: data.deployment_id
|
|
247045
247260
|
}));
|
|
247046
247261
|
|
|
247047
247262
|
// src/core/version/api.ts
|
|
@@ -247054,6 +247269,13 @@ async function post(path, json, doing) {
|
|
|
247054
247269
|
throw await ApiError.fromHttpError(error, doing);
|
|
247055
247270
|
}
|
|
247056
247271
|
}
|
|
247272
|
+
async function patch(path, json, doing) {
|
|
247273
|
+
try {
|
|
247274
|
+
return await getAppClient().patch(path, { json, timeout: 180000 });
|
|
247275
|
+
} catch (error) {
|
|
247276
|
+
throw await ApiError.fromHttpError(error, doing);
|
|
247277
|
+
}
|
|
247278
|
+
}
|
|
247057
247279
|
function parse10(schema, body, what) {
|
|
247058
247280
|
const result = schema.safeParse(body);
|
|
247059
247281
|
if (!result.success) {
|
|
@@ -247070,8 +247292,7 @@ async function createVersion(artifacts, options = {}) {
|
|
|
247070
247292
|
})),
|
|
247071
247293
|
entities: artifacts.entities,
|
|
247072
247294
|
agents: artifacts.agents,
|
|
247073
|
-
source_commit: options.sourceCommit
|
|
247074
|
-
frontend_commit: options.sourceCommit
|
|
247295
|
+
source_commit: options.sourceCommit
|
|
247075
247296
|
}, "declaring a version")).json(), "declare");
|
|
247076
247297
|
options.progress?.onDeclared?.({
|
|
247077
247298
|
fileCount: artifacts.files.length,
|
|
@@ -247087,8 +247308,7 @@ async function createVersion(artifacts, options = {}) {
|
|
|
247087
247308
|
{
|
|
247088
247309
|
absolutePath: file.absolutePath,
|
|
247089
247310
|
hash: file.digest,
|
|
247090
|
-
size: file.size
|
|
247091
|
-
contentType: "application/octet-stream"
|
|
247311
|
+
size: file.size
|
|
247092
247312
|
}
|
|
247093
247313
|
]))
|
|
247094
247314
|
}, {
|
|
@@ -247097,15 +247317,16 @@ async function createVersion(artifacts, options = {}) {
|
|
|
247097
247317
|
});
|
|
247098
247318
|
return parse10(CreateVersionResponseSchema, await (await post(`versions/${encodeURIComponent(declared.sessionId)}/finalize`, {}, "creating a version")).json(), "create version");
|
|
247099
247319
|
}
|
|
247100
|
-
async function
|
|
247101
|
-
return parse10(
|
|
247102
|
-
|
|
247320
|
+
async function setEnvironmentVersion(environment, versionId, options = {}) {
|
|
247321
|
+
return parse10(EnvironmentResponseSchema, await (await patch(`environments/${encodeURIComponent(environment)}`, {
|
|
247322
|
+
version_id: versionId,
|
|
247103
247323
|
...options.idempotencyKey ? { idempotency_key: options.idempotencyKey } : {}
|
|
247104
|
-
}, "
|
|
247324
|
+
}, "setting the environment's version")).json(), "environment");
|
|
247105
247325
|
}
|
|
247106
247326
|
|
|
247107
247327
|
// src/core/version/publish.ts
|
|
247108
247328
|
var STEP = Symbol.for("base44.publishStep");
|
|
247329
|
+
var DEFAULT_ENVIRONMENT = "production";
|
|
247109
247330
|
async function tagStep(step, run) {
|
|
247110
247331
|
try {
|
|
247111
247332
|
return await run();
|
|
@@ -247125,11 +247346,15 @@ async function publishVersion(artifacts, options = {}) {
|
|
|
247125
247346
|
concurrency: options.concurrency,
|
|
247126
247347
|
progress: options.progress
|
|
247127
247348
|
}));
|
|
247128
|
-
const
|
|
247129
|
-
target: options.target,
|
|
247349
|
+
const environment = await tagStep("deploy", () => setEnvironmentVersion(options.target ?? DEFAULT_ENVIRONMENT, version.versionId, {
|
|
247130
247350
|
idempotencyKey: randomUUID4()
|
|
247131
247351
|
}));
|
|
247132
|
-
return {
|
|
247352
|
+
return {
|
|
247353
|
+
environment: environment.name,
|
|
247354
|
+
versionId: environment.versionId,
|
|
247355
|
+
manifestHash: environment.manifestHash,
|
|
247356
|
+
deploymentId: environment.deploymentId
|
|
247357
|
+
};
|
|
247133
247358
|
}
|
|
247134
247359
|
|
|
247135
247360
|
// src/cli/utils/command/Base44Command.ts
|
|
@@ -247411,6 +247636,118 @@ function formatYaml(data, options = {}) {
|
|
|
247411
247636
|
const replacer = stripEmpty ? stripEmptyReplacer : undefined;
|
|
247412
247637
|
return $stringify(data, replacer, { indent: YAML_INDENT }).trimEnd();
|
|
247413
247638
|
}
|
|
247639
|
+
// src/cli/commands/actors/delete.ts
|
|
247640
|
+
async function deleteActorsAction({ log, jsonMode, runTask }, rawNames) {
|
|
247641
|
+
const names = [...new Set(parseNames(rawNames))];
|
|
247642
|
+
if (!names.length)
|
|
247643
|
+
throw new InvalidInputError("At least one actor name is required");
|
|
247644
|
+
names.forEach(validateActorName);
|
|
247645
|
+
const results = [];
|
|
247646
|
+
for (const name of names) {
|
|
247647
|
+
try {
|
|
247648
|
+
await runTask(`Deleting ${name}...`, () => deleteSingleActor(name), {
|
|
247649
|
+
successMessage: `${name} deleted`,
|
|
247650
|
+
errorMessage: `Failed to delete ${name}`
|
|
247651
|
+
});
|
|
247652
|
+
results.push({ name, status: "deleted" });
|
|
247653
|
+
} catch (error) {
|
|
247654
|
+
if (error instanceof ApiError && error.statusCode === 404) {
|
|
247655
|
+
results.push({ name, status: "not_found" });
|
|
247656
|
+
log.info(`${name} not found`);
|
|
247657
|
+
} else {
|
|
247658
|
+
const result = actorOperationError(name, error);
|
|
247659
|
+
results.push(result);
|
|
247660
|
+
log.error(describeActorResult(result));
|
|
247661
|
+
}
|
|
247662
|
+
}
|
|
247663
|
+
}
|
|
247664
|
+
const summary = {
|
|
247665
|
+
deleted: results.filter((result) => result.status === "deleted").length,
|
|
247666
|
+
notFound: results.filter((result) => result.status === "not_found").length,
|
|
247667
|
+
failed: results.filter((result) => result.status === "error").length
|
|
247668
|
+
};
|
|
247669
|
+
if (summary.failed)
|
|
247670
|
+
throw new ResourceDeploymentError("Actor deletion failed", {
|
|
247671
|
+
details: results.map(describeActorResult)
|
|
247672
|
+
});
|
|
247673
|
+
return {
|
|
247674
|
+
outroMessage: names.length === 1 ? `Actor "${names[0]}" ${summary.deleted ? "deleted" : "not found"}` : `${summary.deleted} deleted, ${summary.notFound} not found`,
|
|
247675
|
+
stdout: jsonMode ? `${JSON.stringify({ actors: results, summary })}
|
|
247676
|
+
` : undefined
|
|
247677
|
+
};
|
|
247678
|
+
}
|
|
247679
|
+
function getDeleteCommand() {
|
|
247680
|
+
return new Base44Command("delete").description("Delete deployed actors").argument("[names...]", "Actor names to delete (required)").action(deleteActorsAction);
|
|
247681
|
+
}
|
|
247682
|
+
|
|
247683
|
+
// src/cli/commands/functions/formatDeployResult.ts
|
|
247684
|
+
function formatDuration(ms) {
|
|
247685
|
+
return `${(ms / 1000).toFixed(1)}s`;
|
|
247686
|
+
}
|
|
247687
|
+
function formatDeployResult(result, log) {
|
|
247688
|
+
const label = result.name.padEnd(25);
|
|
247689
|
+
if (result.status === "deployed") {
|
|
247690
|
+
const timing = result.durationMs ? theme.styles.dim(` (${formatDuration(result.durationMs)})`) : "";
|
|
247691
|
+
log.success(`${label} deployed${timing}`);
|
|
247692
|
+
} else if (result.status === "unchanged") {
|
|
247693
|
+
log.success(`${label} unchanged`);
|
|
247694
|
+
} else {
|
|
247695
|
+
log.error(`${label} error: ${result.error}`);
|
|
247696
|
+
}
|
|
247697
|
+
}
|
|
247698
|
+
|
|
247699
|
+
// src/cli/commands/actors/deploy.ts
|
|
247700
|
+
async function deployActorsAction({ log, jsonMode }, rawNames) {
|
|
247701
|
+
const names = [...new Set(parseNames(rawNames))];
|
|
247702
|
+
if (rawNames.length && !names.length)
|
|
247703
|
+
throw new InvalidInputError("At least one actor name is required");
|
|
247704
|
+
names.forEach(validateActorName);
|
|
247705
|
+
const { actors, project } = await readProjectConfig();
|
|
247706
|
+
const notFound = names.filter((name) => !actors.some((actor) => actor.name === name));
|
|
247707
|
+
if (notFound.length)
|
|
247708
|
+
throw new InvalidInputError(`Actor not found in project: ${notFound.join(", ")}`);
|
|
247709
|
+
const selected = names.length ? actors.filter((actor) => names.includes(actor.name)) : actors;
|
|
247710
|
+
let completed = 0;
|
|
247711
|
+
if (selected.length)
|
|
247712
|
+
log.info(`Found ${selected.length} ${selected.length === 1 ? "actor" : "actors"} to deploy`);
|
|
247713
|
+
const results = await deployActorsSequentially(selected, {
|
|
247714
|
+
onStart: (name) => log.step(theme.styles.dim(`[${completed + 1}/${selected.length}] Deploying ${name}...`)),
|
|
247715
|
+
onResult: (result) => {
|
|
247716
|
+
completed++;
|
|
247717
|
+
formatDeployResult(result, log);
|
|
247718
|
+
if (result.status !== "error")
|
|
247719
|
+
for (const warning of result.warnings)
|
|
247720
|
+
log.warn(`${result.name}: ${warning}`);
|
|
247721
|
+
}
|
|
247722
|
+
});
|
|
247723
|
+
const summary = {
|
|
247724
|
+
deployed: results.filter((result) => result.status === "deployed").length,
|
|
247725
|
+
unchanged: results.filter((result) => result.status === "unchanged").length,
|
|
247726
|
+
failed: results.filter((result) => result.status === "error").length
|
|
247727
|
+
};
|
|
247728
|
+
const message = Object.entries(summary).filter(([, count]) => count > 0).map(([status, count]) => `${count} ${status}`).join(", ");
|
|
247729
|
+
if (summary.failed) {
|
|
247730
|
+
throw new ResourceDeploymentError(message, {
|
|
247731
|
+
details: results.map(describeActorResult)
|
|
247732
|
+
});
|
|
247733
|
+
}
|
|
247734
|
+
return {
|
|
247735
|
+
outroMessage: message || `No actors found. Create actors in the '${project.actorsDir}' directory.`,
|
|
247736
|
+
stdout: jsonMode ? `${JSON.stringify({ actors: results, summary })}
|
|
247737
|
+
` : undefined
|
|
247738
|
+
};
|
|
247739
|
+
}
|
|
247740
|
+
function getDeployCommand() {
|
|
247741
|
+
return new Base44Command("deploy").description("Deploy actors to Base44").argument("[names...]", "Actor names to deploy (deploys all if omitted)").action(deployActorsAction);
|
|
247742
|
+
}
|
|
247743
|
+
|
|
247744
|
+
// src/cli/commands/actors/index.ts
|
|
247745
|
+
function getActorsCommand() {
|
|
247746
|
+
return new Command2("actors").description("Manage realtime actors").addCommand(getDeployCommand()).addCommand(getDeleteCommand());
|
|
247747
|
+
}
|
|
247748
|
+
|
|
247749
|
+
// src/cli/commands/agent-skills/pull.ts
|
|
247750
|
+
import { dirname as dirname13, join as join19 } from "node:path";
|
|
247414
247751
|
// src/core/utils/dependencies.ts
|
|
247415
247752
|
import { spawnSync as spawnSync2 } from "node:child_process";
|
|
247416
247753
|
function verifyDenoInstalled(context) {
|
|
@@ -247499,7 +247836,7 @@ async function pullAction({
|
|
|
247499
247836
|
runTask
|
|
247500
247837
|
}) {
|
|
247501
247838
|
const { project } = await readProjectConfig();
|
|
247502
|
-
const dir =
|
|
247839
|
+
const dir = join19(dirname13(project.configPath), project.agentSkillsDir);
|
|
247503
247840
|
const remote = await runTask("Fetching agent skills from Base44", () => fetchAgentSkills(), {
|
|
247504
247841
|
successMessage: "Agent skills fetched successfully",
|
|
247505
247842
|
errorMessage: "Failed to fetch agent skills"
|
|
@@ -247555,14 +247892,14 @@ function getAgentSkillsCommand() {
|
|
|
247555
247892
|
}
|
|
247556
247893
|
|
|
247557
247894
|
// src/cli/commands/agents/pull.ts
|
|
247558
|
-
import { dirname as
|
|
247895
|
+
import { dirname as dirname14, join as join20 } from "node:path";
|
|
247559
247896
|
async function pullAgentsAction({
|
|
247560
247897
|
log,
|
|
247561
247898
|
runTask
|
|
247562
247899
|
}) {
|
|
247563
247900
|
const { project } = await readProjectConfig();
|
|
247564
|
-
const configDir =
|
|
247565
|
-
const agentsDir =
|
|
247901
|
+
const configDir = dirname14(project.configPath);
|
|
247902
|
+
const agentsDir = join20(configDir, project.agentsDir);
|
|
247566
247903
|
const remoteAgents = await runTask("Fetching agents from Base44", async () => {
|
|
247567
247904
|
return await fetchAgents();
|
|
247568
247905
|
}, {
|
|
@@ -247632,12 +247969,12 @@ function getAgentsCommand() {
|
|
|
247632
247969
|
}
|
|
247633
247970
|
|
|
247634
247971
|
// src/cli/commands/auth/password-login.ts
|
|
247635
|
-
import { dirname as
|
|
247972
|
+
import { dirname as dirname15, join as join21 } from "node:path";
|
|
247636
247973
|
async function passwordLoginAction({ log, runTask }, action) {
|
|
247637
247974
|
const shouldEnable = action === "enable";
|
|
247638
247975
|
const { project } = await readProjectConfig();
|
|
247639
|
-
const configDir =
|
|
247640
|
-
const authDir =
|
|
247976
|
+
const configDir = dirname15(project.configPath);
|
|
247977
|
+
const authDir = join21(configDir, project.authDir);
|
|
247641
247978
|
const updated = await runTask("Updating local auth config", async () => {
|
|
247642
247979
|
const current = await readAuthConfig(authDir) ?? DEFAULT_AUTH_CONFIG;
|
|
247643
247980
|
const merged = { ...current, enableUsernamePassword: shouldEnable };
|
|
@@ -247657,14 +247994,14 @@ function getPasswordLoginCommand() {
|
|
|
247657
247994
|
}
|
|
247658
247995
|
|
|
247659
247996
|
// src/cli/commands/auth/pull.ts
|
|
247660
|
-
import { dirname as
|
|
247997
|
+
import { dirname as dirname16, join as join22 } from "node:path";
|
|
247661
247998
|
async function pullAuthAction({
|
|
247662
247999
|
log,
|
|
247663
248000
|
runTask
|
|
247664
248001
|
}) {
|
|
247665
248002
|
const { project } = await readProjectConfig();
|
|
247666
|
-
const configDir =
|
|
247667
|
-
const authDir =
|
|
248003
|
+
const configDir = dirname16(project.configPath);
|
|
248004
|
+
const authDir = join22(configDir, project.authDir);
|
|
247668
248005
|
const remoteConfig = await runTask("Fetching auth config from Base44", async () => {
|
|
247669
248006
|
return await pullAuthConfig();
|
|
247670
248007
|
}, {
|
|
@@ -247728,7 +248065,7 @@ function getAuthPushCommand() {
|
|
|
247728
248065
|
}
|
|
247729
248066
|
|
|
247730
248067
|
// src/cli/commands/auth/social-login.ts
|
|
247731
|
-
import { dirname as
|
|
248068
|
+
import { dirname as dirname17, join as join23, resolve as resolve6 } from "node:path";
|
|
247732
248069
|
var PROVIDER_LABELS = {
|
|
247733
248070
|
google: "Google",
|
|
247734
248071
|
microsoft: "Microsoft",
|
|
@@ -247798,8 +248135,8 @@ async function socialLoginAction({ log, isNonInteractive, runTask }, provider, a
|
|
|
247798
248135
|
}
|
|
247799
248136
|
}
|
|
247800
248137
|
const { project } = await readProjectConfig();
|
|
247801
|
-
const configDir =
|
|
247802
|
-
const authDir =
|
|
248138
|
+
const configDir = dirname17(project.configPath);
|
|
248139
|
+
const authDir = join23(configDir, project.authDir);
|
|
247803
248140
|
const { config: updated } = await runTask("Updating local auth config", async () => updateSocialLoginConfig(authDir, provider, shouldEnable, useCustomOAuth && options.clientId ? { clientId: options.clientId } : undefined));
|
|
247804
248141
|
if (clientSecret) {
|
|
247805
248142
|
await runTask("Saving client secret", async () => pushCustomOAuthSecret(provider, clientSecret));
|
|
@@ -247824,7 +248161,7 @@ function getSocialLoginCommand() {
|
|
|
247824
248161
|
}
|
|
247825
248162
|
|
|
247826
248163
|
// src/cli/commands/auth/sso.ts
|
|
247827
|
-
import { dirname as
|
|
248164
|
+
import { dirname as dirname18, join as join24, resolve as resolve7 } from "node:path";
|
|
247828
248165
|
var SSOConfigFileSchema = object({
|
|
247829
248166
|
provider: _enum(Object.values(KNOWN_SSO_PROVIDERS)),
|
|
247830
248167
|
clientId: string2(),
|
|
@@ -247987,8 +248324,8 @@ async function ssoEnableAction({ isNonInteractive, runTask }, options) {
|
|
|
247987
248324
|
throw error;
|
|
247988
248325
|
}
|
|
247989
248326
|
const { project } = await readProjectConfig();
|
|
247990
|
-
const configDir =
|
|
247991
|
-
const authDir =
|
|
248327
|
+
const configDir = dirname18(project.configPath);
|
|
248328
|
+
const authDir = join24(configDir, project.authDir);
|
|
247992
248329
|
await runTask("Updating local auth config", async () => updateSSOConfig(authDir, provider, true));
|
|
247993
248330
|
await runTask("Saving SSO credentials", async () => pushSSOSecrets(secrets));
|
|
247994
248331
|
return {
|
|
@@ -248003,8 +248340,8 @@ async function ssoDisableAction({ log, runTask }, options) {
|
|
|
248003
248340
|
throw new InvalidInputError("Configuration options cannot be used with disable. To disable SSO: base44 auth sso disable");
|
|
248004
248341
|
}
|
|
248005
248342
|
const { project } = await readProjectConfig();
|
|
248006
|
-
const configDir =
|
|
248007
|
-
const authDir =
|
|
248343
|
+
const configDir = dirname18(project.configPath);
|
|
248344
|
+
const authDir = join24(configDir, project.authDir);
|
|
248008
248345
|
const updated = await runTask("Updating local auth config", async () => updateSSOConfig(authDir, null, false));
|
|
248009
248346
|
await runTask("Removing SSO credentials", async () => deleteSSOSecrets());
|
|
248010
248347
|
if (!hasAnyLoginMethod(updated)) {
|
|
@@ -248886,13 +249223,13 @@ function getConnectorsListAvailableCommand() {
|
|
|
248886
249223
|
}
|
|
248887
249224
|
|
|
248888
249225
|
// src/cli/commands/connectors/pull.ts
|
|
248889
|
-
import { dirname as
|
|
249226
|
+
import { dirname as dirname19, join as join25, resolve as resolve8 } from "node:path";
|
|
248890
249227
|
async function resolveConnectorsDir(options) {
|
|
248891
249228
|
if (!getAppContext().projectRoot) {
|
|
248892
249229
|
return resolve8(options.dir ?? "connectors");
|
|
248893
249230
|
}
|
|
248894
249231
|
const { project } = await readProjectConfig();
|
|
248895
|
-
return
|
|
249232
|
+
return join25(dirname19(project.configPath), project.connectorsDir);
|
|
248896
249233
|
}
|
|
248897
249234
|
async function pullConnectorsAction({ log, runTask, jsonMode }, options) {
|
|
248898
249235
|
const connectorsDir = await resolveConnectorsDir(options);
|
|
@@ -249147,43 +249484,22 @@ async function deleteFunctionsAction({ runTask }, names) {
|
|
|
249147
249484
|
parts.push(`${errors} error${errors !== 1 ? "s" : ""}`);
|
|
249148
249485
|
return { outroMessage: parts.join(", ") };
|
|
249149
249486
|
}
|
|
249150
|
-
function
|
|
249487
|
+
function parseNames2(args) {
|
|
249151
249488
|
return args.flatMap((arg) => arg.split(",")).map((n) => n.trim()).filter(Boolean);
|
|
249152
249489
|
}
|
|
249153
249490
|
function validateNames(command) {
|
|
249154
|
-
const names =
|
|
249491
|
+
const names = parseNames2(command.args);
|
|
249155
249492
|
if (names.length === 0) {
|
|
249156
249493
|
command.error("At least one function name is required");
|
|
249157
249494
|
}
|
|
249158
249495
|
}
|
|
249159
|
-
function
|
|
249496
|
+
function getDeleteCommand2() {
|
|
249160
249497
|
return new Base44Command("delete").description("Delete deployed functions").argument("<names...>", "Function names to delete").hook("preAction", validateNames).action(async (ctx, rawNames) => {
|
|
249161
|
-
const names =
|
|
249498
|
+
const names = parseNames2(rawNames);
|
|
249162
249499
|
return deleteFunctionsAction(ctx, names);
|
|
249163
249500
|
});
|
|
249164
249501
|
}
|
|
249165
249502
|
|
|
249166
|
-
// src/cli/commands/functions/formatDeployResult.ts
|
|
249167
|
-
function formatDuration(ms) {
|
|
249168
|
-
return `${(ms / 1000).toFixed(1)}s`;
|
|
249169
|
-
}
|
|
249170
|
-
function formatDeployResult(result, log) {
|
|
249171
|
-
const label = result.name.padEnd(25);
|
|
249172
|
-
if (result.status === "deployed") {
|
|
249173
|
-
const timing = result.durationMs ? theme.styles.dim(` (${formatDuration(result.durationMs)})`) : "";
|
|
249174
|
-
log.success(`${label} deployed${timing}`);
|
|
249175
|
-
} else if (result.status === "unchanged") {
|
|
249176
|
-
log.success(`${label} unchanged`);
|
|
249177
|
-
} else {
|
|
249178
|
-
log.error(`${label} error: ${result.error}`);
|
|
249179
|
-
}
|
|
249180
|
-
}
|
|
249181
|
-
|
|
249182
|
-
// src/cli/commands/functions/parseNames.ts
|
|
249183
|
-
function parseNames2(args) {
|
|
249184
|
-
return args.flatMap((arg) => arg.split(",")).map((n) => n.trim()).filter(Boolean);
|
|
249185
|
-
}
|
|
249186
|
-
|
|
249187
249503
|
// src/cli/commands/functions/deploy.ts
|
|
249188
249504
|
function resolveFunctionsToDeploy(names, allFunctions) {
|
|
249189
249505
|
if (names.length === 0)
|
|
@@ -249270,9 +249586,9 @@ async function deployFunctionsAction({ log }, names, options) {
|
|
|
249270
249586
|
}
|
|
249271
249587
|
return { outroMessage: buildDeploySummary(results) };
|
|
249272
249588
|
}
|
|
249273
|
-
function
|
|
249589
|
+
function getDeployCommand2() {
|
|
249274
249590
|
return new Base44Command("deploy").description("Deploy functions to Base44").argument("[names...]", "Function names to deploy (deploys all if omitted)").option("--force", "Delete remote functions not found locally").action(async (ctx, rawNames, options) => {
|
|
249275
|
-
const names =
|
|
249591
|
+
const names = parseNames(rawNames);
|
|
249276
249592
|
return deployFunctionsAction(ctx, names, options);
|
|
249277
249593
|
});
|
|
249278
249594
|
}
|
|
@@ -249300,11 +249616,11 @@ function getListCommand() {
|
|
|
249300
249616
|
}
|
|
249301
249617
|
|
|
249302
249618
|
// src/cli/commands/functions/pull.ts
|
|
249303
|
-
import { dirname as
|
|
249619
|
+
import { dirname as dirname20, join as join26 } from "node:path";
|
|
249304
249620
|
async function pullFunctionsAction({ log, runTask }, name) {
|
|
249305
249621
|
const { project, functions } = await readProjectConfig();
|
|
249306
|
-
const configDir =
|
|
249307
|
-
const functionsDir =
|
|
249622
|
+
const configDir = dirname20(project.configPath);
|
|
249623
|
+
const functionsDir = join26(configDir, project.functionsDir);
|
|
249308
249624
|
const pluginFunctionNames = new Set(functions.filter((fn) => fn.source.type === "plugin").map((fn) => fn.name));
|
|
249309
249625
|
const remoteFunctions = await runTask("Fetching functions from Base44", async () => {
|
|
249310
249626
|
const { functions } = await listDeployedFunctions();
|
|
@@ -249359,7 +249675,7 @@ function getPullCommand() {
|
|
|
249359
249675
|
|
|
249360
249676
|
// src/cli/commands/functions/index.ts
|
|
249361
249677
|
function getFunctionsCommand() {
|
|
249362
|
-
return new Command2("functions").description("Manage backend functions").addCommand(
|
|
249678
|
+
return new Command2("functions").description("Manage backend functions").addCommand(getDeployCommand2()).addCommand(getDeleteCommand2()).addCommand(getListCommand()).addCommand(getPullCommand());
|
|
249363
249679
|
}
|
|
249364
249680
|
|
|
249365
249681
|
// src/cli/commands/project/site-build.ts
|
|
@@ -249408,14 +249724,9 @@ async function maybeAskToBuild(isNonInteractive, buildCommand) {
|
|
|
249408
249724
|
import { createHash as createHash2 } from "node:crypto";
|
|
249409
249725
|
import { createReadStream as createReadStream3 } from "node:fs";
|
|
249410
249726
|
import { stat as stat3 } from "node:fs/promises";
|
|
249411
|
-
import {
|
|
249412
|
-
var MAX_FILE_COUNT =
|
|
249413
|
-
var
|
|
249414
|
-
var ALWAYS_IGNORED2 = new Set([
|
|
249415
|
-
ASSETS_IGNORE_FILE2,
|
|
249416
|
-
"wrangler.json",
|
|
249417
|
-
".dev.vars"
|
|
249418
|
-
]);
|
|
249727
|
+
import { join as join27 } from "node:path";
|
|
249728
|
+
var MAX_FILE_COUNT = 50000;
|
|
249729
|
+
var HASH_CONCURRENCY = 32;
|
|
249419
249730
|
var ENTRY2 = "index.html";
|
|
249420
249731
|
async function digestFile(absolutePath) {
|
|
249421
249732
|
const hash = createHash2("sha256");
|
|
@@ -249425,14 +249736,7 @@ async function digestFile(absolutePath) {
|
|
|
249425
249736
|
return `sha256:${hash.digest("hex")}`;
|
|
249426
249737
|
}
|
|
249427
249738
|
async function collectBuildOutput(outputDir) {
|
|
249428
|
-
const
|
|
249429
|
-
cwd: outputDir,
|
|
249430
|
-
dot: true,
|
|
249431
|
-
onlyFiles: true,
|
|
249432
|
-
followSymbolicLinks: false,
|
|
249433
|
-
ignoreFiles: [ASSETS_IGNORE_FILE2]
|
|
249434
|
-
});
|
|
249435
|
-
const relativePaths = found.filter((path) => !ALWAYS_IGNORED2.has(basename5(path))).sort();
|
|
249739
|
+
const relativePaths = await walkBuildOutput(outputDir);
|
|
249436
249740
|
if (relativePaths.length === 0) {
|
|
249437
249741
|
throw new InvalidInputError(`No files found in ${outputDir}. Build the site before creating a version.`, {
|
|
249438
249742
|
hints: [
|
|
@@ -249446,8 +249750,8 @@ async function collectBuildOutput(outputDir) {
|
|
|
249446
249750
|
if (!relativePaths.includes(ENTRY2)) {
|
|
249447
249751
|
throw new InvalidInputError(`${outputDir} has no ${ENTRY2}, so nothing could enter the site.`);
|
|
249448
249752
|
}
|
|
249449
|
-
return await
|
|
249450
|
-
const absolutePath =
|
|
249753
|
+
return await pMap(relativePaths, async (path) => {
|
|
249754
|
+
const absolutePath = join27(outputDir, ...path.split("/"));
|
|
249451
249755
|
const { size } = await stat3(absolutePath);
|
|
249452
249756
|
return {
|
|
249453
249757
|
path,
|
|
@@ -249455,7 +249759,7 @@ async function collectBuildOutput(outputDir) {
|
|
|
249455
249759
|
size,
|
|
249456
249760
|
digest: await digestFile(absolutePath)
|
|
249457
249761
|
};
|
|
249458
|
-
})
|
|
249762
|
+
}, { concurrency: HASH_CONCURRENCY });
|
|
249459
249763
|
}
|
|
249460
249764
|
async function readRawResources(dir) {
|
|
249461
249765
|
if (!await pathExists(dir)) {
|
|
@@ -249469,19 +249773,25 @@ async function readRawResources(dir) {
|
|
|
249469
249773
|
const payloads = {};
|
|
249470
249774
|
for (const relativePath of files.sort()) {
|
|
249471
249775
|
const name = relativePath.replace(/\.jsonc?$/, "");
|
|
249472
|
-
payloads[name] = await readJsonFile(
|
|
249776
|
+
payloads[name] = await readJsonFile(join27(dir, ...relativePath.split("/")));
|
|
249473
249777
|
}
|
|
249474
249778
|
return payloads;
|
|
249475
249779
|
}
|
|
249476
249780
|
async function collectResources(configDir, dirs) {
|
|
249477
249781
|
const [entities, agents] = await Promise.all([
|
|
249478
|
-
readRawResources(
|
|
249479
|
-
readRawResources(
|
|
249782
|
+
readRawResources(join27(configDir, dirs.entitiesDir)),
|
|
249783
|
+
readRawResources(join27(configDir, dirs.agentsDir))
|
|
249480
249784
|
]);
|
|
249481
249785
|
return { entities, agents };
|
|
249482
249786
|
}
|
|
249787
|
+
// src/core/version/gate.ts
|
|
249788
|
+
var VERSIONS_API_ENV = "BASE44_VERSIONS_API";
|
|
249789
|
+
function versionsApiEnabled(env = process.env) {
|
|
249790
|
+
const value = env[VERSIONS_API_ENV];
|
|
249791
|
+
return value === "1" || value === "true";
|
|
249792
|
+
}
|
|
249483
249793
|
// src/core/version/project.ts
|
|
249484
|
-
import { dirname as
|
|
249794
|
+
import { dirname as dirname21, join as join28, resolve as resolve10 } from "node:path";
|
|
249485
249795
|
var DEFAULT_BUILD_COMMAND = "npm run build";
|
|
249486
249796
|
var DEFAULT_OUTPUT_DIRECTORY = "dist";
|
|
249487
249797
|
async function resolvePublishTarget(projectRoot, overrides = {}) {
|
|
@@ -249489,7 +249799,7 @@ async function resolvePublishTarget(projectRoot, overrides = {}) {
|
|
|
249489
249799
|
const root = project?.root ?? projectRoot ?? process.cwd();
|
|
249490
249800
|
return {
|
|
249491
249801
|
root,
|
|
249492
|
-
configDir: project ?
|
|
249802
|
+
configDir: project ? dirname21(project.configPath) : join28(root, PROJECT_SUBDIR),
|
|
249493
249803
|
buildCommand: project ? project.site?.buildCommand : DEFAULT_BUILD_COMMAND,
|
|
249494
249804
|
outputDir: outputDirectory(project, root, overrides.outputDir),
|
|
249495
249805
|
entitiesDir: project?.entitiesDir ?? "entities",
|
|
@@ -249524,33 +249834,20 @@ async function readSettingsIfPresent(projectRoot) {
|
|
|
249524
249834
|
}
|
|
249525
249835
|
}
|
|
249526
249836
|
// src/cli/commands/project/build.ts
|
|
249527
|
-
async function buildAction(ctx
|
|
249528
|
-
const { app
|
|
249529
|
-
const target = await resolvePublishTarget(app?.projectRoot
|
|
249530
|
-
outputDir: options.outputDir
|
|
249531
|
-
});
|
|
249837
|
+
async function buildAction(ctx) {
|
|
249838
|
+
const { app } = ctx;
|
|
249839
|
+
const target = await resolvePublishTarget(app?.projectRoot);
|
|
249532
249840
|
await runSiteBuild(ctx, {
|
|
249533
249841
|
root: target.root,
|
|
249534
249842
|
buildCommand: target.buildCommand,
|
|
249535
249843
|
appId: app?.id ?? ""
|
|
249536
249844
|
});
|
|
249537
|
-
const files = await collectBuildOutput(requireOutputDir(target));
|
|
249538
|
-
const totalBytes = files.reduce((sum, file) => sum + file.size, 0);
|
|
249539
249845
|
return {
|
|
249540
|
-
outroMessage: `
|
|
249541
|
-
stdout: jsonMode ? `${JSON.stringify({
|
|
249542
|
-
outputDir: target.outputDir,
|
|
249543
|
-
files: files.map(({ path, size, digest }) => ({
|
|
249544
|
-
path,
|
|
249545
|
-
size,
|
|
249546
|
-
digest
|
|
249547
|
-
}))
|
|
249548
|
-
}, null, 2)}
|
|
249549
|
-
` : undefined
|
|
249846
|
+
outroMessage: `Site built with app id ${theme.styles.bold(app?.id ?? "")}`
|
|
249550
249847
|
};
|
|
249551
249848
|
}
|
|
249552
249849
|
function getBuildCommand() {
|
|
249553
|
-
return new Base44Command("build", { requireAuth: false }).description("Build the site with the Base44 app id injected").
|
|
249850
|
+
return new Base44Command("build", { requireAuth: false }).description("Build the site with the Base44 app id injected").action(buildAction);
|
|
249554
249851
|
}
|
|
249555
249852
|
|
|
249556
249853
|
// src/cli/commands/project/create.ts
|
|
@@ -249558,7 +249855,7 @@ import { basename as basename6, resolve as resolve11 } from "node:path";
|
|
|
249558
249855
|
var import_kebabCase = __toESM(require_kebabCase(), 1);
|
|
249559
249856
|
|
|
249560
249857
|
// src/cli/commands/project/scaffold-shared.ts
|
|
249561
|
-
import { join as
|
|
249858
|
+
import { join as join29 } from "node:path";
|
|
249562
249859
|
var DEFAULT_TEMPLATE_ID = "backend-only";
|
|
249563
249860
|
async function getTemplateById(templateId) {
|
|
249564
249861
|
const templates = await listTemplates();
|
|
@@ -249621,7 +249918,7 @@ async function completeProjectSetup({
|
|
|
249621
249918
|
env: { VITE_BASE44_APP_ID: projectId }
|
|
249622
249919
|
})`${buildCommand}`;
|
|
249623
249920
|
updateMessage("Deploying site...");
|
|
249624
|
-
return await deploySite(
|
|
249921
|
+
return await deploySite(join29(resolvedPath, outputDirectory));
|
|
249625
249922
|
}, {
|
|
249626
249923
|
successMessage: theme.colors.base44Orange("Site deployed successfully"),
|
|
249627
249924
|
errorMessage: "Failed to deploy site"
|
|
@@ -249836,7 +250133,15 @@ async function deployAction(ctx, options = {}) {
|
|
|
249836
250133
|
outroMessage: "No resources found to deploy"
|
|
249837
250134
|
};
|
|
249838
250135
|
}
|
|
249839
|
-
const {
|
|
250136
|
+
const {
|
|
250137
|
+
project,
|
|
250138
|
+
entities,
|
|
250139
|
+
functions,
|
|
250140
|
+
actors,
|
|
250141
|
+
agents,
|
|
250142
|
+
connectors,
|
|
250143
|
+
authConfig
|
|
250144
|
+
} = projectData;
|
|
249840
250145
|
const summaryLines = [];
|
|
249841
250146
|
if (entities.length > 0) {
|
|
249842
250147
|
summaryLines.push(` - ${entities.length} ${entities.length === 1 ? "entity" : "entities"}`);
|
|
@@ -249844,6 +250149,9 @@ async function deployAction(ctx, options = {}) {
|
|
|
249844
250149
|
if (functions.length > 0) {
|
|
249845
250150
|
summaryLines.push(` - ${functions.length} ${functions.length === 1 ? "function" : "functions"}`);
|
|
249846
250151
|
}
|
|
250152
|
+
if (actors.length > 0) {
|
|
250153
|
+
summaryLines.push(` - ${actors.length} ${actors.length === 1 ? "actor" : "actors"}`);
|
|
250154
|
+
}
|
|
249847
250155
|
if (agents.length > 0) {
|
|
249848
250156
|
summaryLines.push(` - ${agents.length} ${agents.length === 1 ? "agent" : "agents"}`);
|
|
249849
250157
|
}
|
|
@@ -249877,6 +250185,7 @@ ${summaryLines.join(`
|
|
|
249877
250185
|
await maybeBuildBeforeDeploy(ctx, project, options.build);
|
|
249878
250186
|
let functionCompleted = 0;
|
|
249879
250187
|
const functionTotal = functions.length;
|
|
250188
|
+
let actorCompleted = 0;
|
|
249880
250189
|
const result = await deployAll(projectData, {
|
|
249881
250190
|
onVisibilitySet: (level) => {
|
|
249882
250191
|
log.success(`App visibility set to ${level}`);
|
|
@@ -249888,6 +250197,16 @@ ${summaryLines.join(`
|
|
|
249888
250197
|
onFunctionResult: (r) => {
|
|
249889
250198
|
functionCompleted++;
|
|
249890
250199
|
formatDeployResult(r, log);
|
|
250200
|
+
},
|
|
250201
|
+
onActorStart: (name) => {
|
|
250202
|
+
log.step(theme.styles.dim(`[${actorCompleted + 1}/${actors.length}] Deploying ${name}...`));
|
|
250203
|
+
},
|
|
250204
|
+
onActorResult: (result) => {
|
|
250205
|
+
actorCompleted++;
|
|
250206
|
+
formatDeployResult(result, log);
|
|
250207
|
+
if (result.status !== "error")
|
|
250208
|
+
for (const warning of result.warnings)
|
|
250209
|
+
log.warn(`${result.name}: ${warning}`);
|
|
249891
250210
|
}
|
|
249892
250211
|
});
|
|
249893
250212
|
const connectorResults = result.connectorResults ?? [];
|
|
@@ -249902,8 +250221,8 @@ ${summaryLines.join(`
|
|
|
249902
250221
|
}
|
|
249903
250222
|
return { outroMessage: "App deployed successfully" };
|
|
249904
250223
|
}
|
|
249905
|
-
function
|
|
249906
|
-
return new Base44Command("deploy").description("Deploy all project resources (entities, functions, agents, connectors, and site)").option("-y, --yes", "Skip confirmation prompt").option("--build", "Build the site before deploying (skips the prompt)").option("--no-build", "Deploy without building (skips the prompt)").action(deployAction);
|
|
250224
|
+
function getDeployCommand3() {
|
|
250225
|
+
return new Base44Command("deploy").description("Deploy all project resources (entities, functions, actors, agents, connectors, and site)").option("-y, --yes", "Skip confirmation prompt").option("--build", "Build the site before deploying (skips the prompt)").option("--no-build", "Deploy without building (skips the prompt)").action(deployAction);
|
|
249907
250226
|
}
|
|
249908
250227
|
async function handleOAuthConnectors(connectorResults, isNonInteractive, options, log) {
|
|
249909
250228
|
const needsOAuth = filterPendingOAuth(connectorResults);
|
|
@@ -250389,7 +250708,7 @@ async function logsAction(ctx, options) {
|
|
|
250389
250708
|
function getLogsCommand() {
|
|
250390
250709
|
return new Base44Command("logs").description("Fetch function logs for this app").option("--function <names>", "Filter by function name(s), comma-separated. If omitted, fetches logs for all deployed functions").option("--since <datetime>", "Show logs from this time. ISO datetime or relative shorthand (e.g. 1h, 30m, 2d)", normalizeDatetime).option("--until <datetime>", "Show logs until this time. ISO datetime or relative shorthand (e.g. 1h, 30m, 2d)", normalizeDatetime).addOption(new Option2("--level <level>", "Filter by log level").choices([
|
|
250391
250710
|
...LogLevelSchema.options
|
|
250392
|
-
])).option("-n, --limit <n>", "Results per page (1-1000; the server returns at most 500)").option("-f, --follow", "Stream new logs as they arrive").addOption(new Option2("--order <order>", "Sort order").choices(["asc", "desc"])).addOption(new Option2("--env <env>", "Which deployment to read logs from: preview (current draft) or prod (published).
|
|
250711
|
+
])).option("-n, --limit <n>", "Results per page (1-1000; the server returns at most 500)").option("-f, --follow", "Stream new logs as they arrive").addOption(new Option2("--order <order>", "Sort order").choices(["asc", "desc"])).addOption(new Option2("--env <env>", "Which deployment to read logs from: preview (current draft) or prod (published). Omit to read both.").choices([...LogEnvSchema.options])).action(logsAction);
|
|
250393
250712
|
}
|
|
250394
250713
|
|
|
250395
250714
|
// src/cli/commands/project/scaffold.ts
|
|
@@ -250457,6 +250776,31 @@ function getVisibilityCommand() {
|
|
|
250457
250776
|
])).action(setVisibility);
|
|
250458
250777
|
}
|
|
250459
250778
|
|
|
250779
|
+
// src/cli/commands/versions/options.ts
|
|
250780
|
+
function outputDirOption() {
|
|
250781
|
+
return new Option2("--output-dir <dir>", "Build output directory (defaults to the project's, else dist)");
|
|
250782
|
+
}
|
|
250783
|
+
function targetOption() {
|
|
250784
|
+
return new Option2("--target <name>", "Environment to serve the version at");
|
|
250785
|
+
}
|
|
250786
|
+
function gitHashOption() {
|
|
250787
|
+
return new Option2("--git-hash <hash>", "Commit the build came from (defaults to the checkout's HEAD)").argParser((value) => {
|
|
250788
|
+
if (!isGitCommitHash(value)) {
|
|
250789
|
+
throw new InvalidArgumentError2("Expected a git commit hash (7-64 hex chars).");
|
|
250790
|
+
}
|
|
250791
|
+
return value;
|
|
250792
|
+
});
|
|
250793
|
+
}
|
|
250794
|
+
function concurrencyOption() {
|
|
250795
|
+
return new Option2("--concurrency <n>", "Parallel file uploads").default(DEFAULT_VERSION_UPLOAD_CONCURRENCY).argParser((value) => {
|
|
250796
|
+
const parsed = Number(value);
|
|
250797
|
+
if (!Number.isInteger(parsed) || parsed < 1 || parsed > MAX_VERSION_UPLOAD_CONCURRENCY) {
|
|
250798
|
+
throw new InvalidArgumentError2(`Expected a whole number between 1 and ${MAX_VERSION_UPLOAD_CONCURRENCY}.`);
|
|
250799
|
+
}
|
|
250800
|
+
return parsed;
|
|
250801
|
+
});
|
|
250802
|
+
}
|
|
250803
|
+
|
|
250460
250804
|
// src/cli/commands/publish.ts
|
|
250461
250805
|
async function publishAction(ctx, options) {
|
|
250462
250806
|
const { runTask, log, jsonMode, app } = ctx;
|
|
@@ -250470,13 +250814,12 @@ async function publishAction(ctx, options) {
|
|
|
250470
250814
|
appId: app?.id ?? ""
|
|
250471
250815
|
}));
|
|
250472
250816
|
}
|
|
250473
|
-
const outputDir = requireOutputDir(target);
|
|
250474
250817
|
const gitHash = await resolveProvenanceCommit(target.root, options.gitHash);
|
|
250475
250818
|
const result = await runTask("Publishing...", async (updateMessage) => {
|
|
250476
|
-
const artifacts = {
|
|
250477
|
-
files: await collectBuildOutput(
|
|
250819
|
+
const artifacts = await tagStep("create_version", async () => ({
|
|
250820
|
+
files: await collectBuildOutput(requireOutputDir(target)),
|
|
250478
250821
|
...await collectResources(target.configDir, target)
|
|
250479
|
-
};
|
|
250822
|
+
}));
|
|
250480
250823
|
return await publishVersion(artifacts, {
|
|
250481
250824
|
sourceCommit: gitHash,
|
|
250482
250825
|
target: options.target,
|
|
@@ -250488,29 +250831,16 @@ async function publishAction(ctx, options) {
|
|
|
250488
250831
|
});
|
|
250489
250832
|
}, { successMessage: "Published", errorMessage: "Publish failed" });
|
|
250490
250833
|
if (!jsonMode) {
|
|
250491
|
-
log.message(theme.styles.dim(`version ${result.versionId}
|
|
250834
|
+
log.message(theme.styles.dim(`version ${result.versionId}`));
|
|
250492
250835
|
}
|
|
250493
250836
|
return {
|
|
250494
|
-
outroMessage:
|
|
250837
|
+
outroMessage: `${result.environment} now serves ${result.versionId}`,
|
|
250495
250838
|
stdout: jsonMode ? `${JSON.stringify(result, null, 2)}
|
|
250496
250839
|
` : undefined
|
|
250497
250840
|
};
|
|
250498
250841
|
}
|
|
250499
250842
|
function getPublishCommand() {
|
|
250500
|
-
return new Base44Command("publish").description("Build the app, record it as a version, and serve that version").option("--no-build", "Publish the existing build output without rebuilding").
|
|
250501
|
-
}
|
|
250502
|
-
function parseGitHash(value) {
|
|
250503
|
-
if (!isGitCommitHash(value)) {
|
|
250504
|
-
throw new InvalidArgumentError2("Expected a git commit hash (7-64 hex chars).");
|
|
250505
|
-
}
|
|
250506
|
-
return value;
|
|
250507
|
-
}
|
|
250508
|
-
function parseConcurrency(value) {
|
|
250509
|
-
const parsed = Number(value);
|
|
250510
|
-
if (!Number.isInteger(parsed) || parsed < 1 || parsed > MAX_VERSION_UPLOAD_CONCURRENCY) {
|
|
250511
|
-
throw new InvalidArgumentError2(`Expected a whole number between 1 and ${MAX_VERSION_UPLOAD_CONCURRENCY}.`);
|
|
250512
|
-
}
|
|
250513
|
-
return parsed;
|
|
250843
|
+
return new Base44Command("publish").description("Build the app, record it as a version, and serve that version").option("--no-build", "Publish the existing build output without rebuilding").addOption(outputDirOption()).addOption(targetOption()).addOption(gitHashOption()).addOption(concurrencyOption()).action(publishAction);
|
|
250514
250844
|
}
|
|
250515
250845
|
|
|
250516
250846
|
// src/core/resources/sandbox/schema.ts
|
|
@@ -251025,18 +251355,18 @@ function siteOutputDir(project) {
|
|
|
251025
251355
|
function getSiteDeployCommand() {
|
|
251026
251356
|
const command = new Base44Command("deploy").description("Deploy built site files to Base44 hosting").option("-y, --yes", "Skip confirmation prompt").option("--build", "Build the site before deploying (skips the prompt)").option("--no-build", "Deploy without building (skips the prompt)");
|
|
251027
251357
|
if (deploymentsApiEnabled()) {
|
|
251028
|
-
command.addOption(new Option2("--git-hash <hash>", "Commit the build came from (defaults to the checkout's HEAD)").argParser(
|
|
251029
|
-
command.addOption(new Option2("--concurrency <n>", "Parallel asset uploads").default(DEFAULT_UPLOAD_CONCURRENCY).argParser(
|
|
251358
|
+
command.addOption(new Option2("--git-hash <hash>", "Commit the build came from (defaults to the checkout's HEAD)").argParser(parseGitHash));
|
|
251359
|
+
command.addOption(new Option2("--concurrency <n>", "Parallel asset uploads").default(DEFAULT_UPLOAD_CONCURRENCY).argParser(parseConcurrency));
|
|
251030
251360
|
}
|
|
251031
251361
|
return command.action(deployAction2);
|
|
251032
251362
|
}
|
|
251033
|
-
function
|
|
251363
|
+
function parseGitHash(value) {
|
|
251034
251364
|
if (!isGitCommitHash(value)) {
|
|
251035
251365
|
throw new InvalidArgumentError2("Expected a git commit hash (7-64 hex chars).");
|
|
251036
251366
|
}
|
|
251037
251367
|
return value;
|
|
251038
251368
|
}
|
|
251039
|
-
function
|
|
251369
|
+
function parseConcurrency(value) {
|
|
251040
251370
|
const parsed = Number(value);
|
|
251041
251371
|
if (!Number.isInteger(parsed) || parsed < 1 || parsed > MAX_UPLOAD_CONCURRENCY) {
|
|
251042
251372
|
throw new InvalidArgumentError2(`Expected a whole number between 1 and ${MAX_UPLOAD_CONCURRENCY}.`);
|
|
@@ -251074,10 +251404,12 @@ var EMPTY_TEMPLATE = import_common_tags.stripIndent`
|
|
|
251074
251404
|
// Auto-generated by Base44 CLI - DO NOT EDIT
|
|
251075
251405
|
// Regenerate with: base44 types
|
|
251076
251406
|
//
|
|
251077
|
-
// No entities, functions, agents, or connectors found in project.
|
|
251078
|
-
// Add resources to base44/entities/, base44/functions/, base44/agents/, or base44/connectors/
|
|
251407
|
+
// No entities, functions, actors, agents, or connectors found in project.
|
|
251408
|
+
// Add resources to base44/entities/, base44/functions/, base44/actors/, base44/agents/, or base44/connectors/
|
|
251079
251409
|
// and run \`base44 types generate\` again.
|
|
251080
251410
|
|
|
251411
|
+
import '@base44/sdk';
|
|
251412
|
+
|
|
251081
251413
|
declare module '@base44/sdk' {
|
|
251082
251414
|
// No types to augment - add resources and regenerate
|
|
251083
251415
|
}
|
|
@@ -251087,8 +251419,8 @@ async function generateTypesFile(input) {
|
|
|
251087
251419
|
await writeFile(getTypesOutputPath(input.projectRoot), content);
|
|
251088
251420
|
}
|
|
251089
251421
|
async function generateContent(input) {
|
|
251090
|
-
const { entities, functions, agents, connectors } = input;
|
|
251091
|
-
if (!entities.length && !functions.length && !agents.length && !connectors.length) {
|
|
251422
|
+
const { entities, functions, actors, agents, connectors } = input;
|
|
251423
|
+
if (!entities.length && !functions.length && !actors.length && !agents.length && !connectors.length) {
|
|
251092
251424
|
return EMPTY_TEMPLATE;
|
|
251093
251425
|
}
|
|
251094
251426
|
const entityInterfaces = await Promise.all(entities.map((e) => compileEntity(e)));
|
|
@@ -251098,12 +251430,14 @@ async function generateContent(input) {
|
|
|
251098
251430
|
entities.map((e) => `"${e.name}": ${toPascalCase(e.name)};`)
|
|
251099
251431
|
],
|
|
251100
251432
|
["FunctionNameRegistry", functions.map((f) => `"${f.name}": true;`)],
|
|
251433
|
+
["ActorNameRegistry", actors.map((actor) => `"${actor.name}": true;`)],
|
|
251101
251434
|
["AgentNameRegistry", agents.map((a) => `"${a.name}": true;`)],
|
|
251102
251435
|
["ConnectorTypeRegistry", connectors.map((c) => `"${c.type}": true;`)]
|
|
251103
251436
|
];
|
|
251104
251437
|
const registries = registryEntries.filter(([, entries]) => entries.length > 0).map(([name, entries]) => registry2(name, entries));
|
|
251105
251438
|
return [
|
|
251106
251439
|
HEADER2,
|
|
251440
|
+
"import '@base44/sdk';",
|
|
251107
251441
|
entityInterfaces.join(`
|
|
251108
251442
|
|
|
251109
251443
|
`),
|
|
@@ -251148,10 +251482,10 @@ function toPascalCase(name) {
|
|
|
251148
251482
|
return name.split(/[-_\s]+/).map((w) => w.charAt(0).toUpperCase() + w.slice(1)).join("");
|
|
251149
251483
|
}
|
|
251150
251484
|
// src/core/types/update-project.ts
|
|
251151
|
-
import { join as
|
|
251485
|
+
import { join as join33 } from "node:path";
|
|
251152
251486
|
var TYPES_INCLUDE_PATH = `${PROJECT_SUBDIR}/${TYPES_OUTPUT_SUBDIR}/*.d.ts`;
|
|
251153
251487
|
async function updateProjectConfig(projectRoot) {
|
|
251154
|
-
const tsconfigPath =
|
|
251488
|
+
const tsconfigPath = join33(projectRoot, "tsconfig.json");
|
|
251155
251489
|
if (!await pathExists(tsconfigPath)) {
|
|
251156
251490
|
return false;
|
|
251157
251491
|
}
|
|
@@ -251175,12 +251509,13 @@ var TYPES_FILE_PATH = "base44/.types/types.d.ts";
|
|
|
251175
251509
|
async function generateTypesAction({
|
|
251176
251510
|
runTask
|
|
251177
251511
|
}) {
|
|
251178
|
-
const { entities, functions, agents, connectors, project } = await readProjectConfig();
|
|
251512
|
+
const { entities, functions, actors, agents, connectors, project } = await readProjectConfig();
|
|
251179
251513
|
await runTask("Generating types", async () => {
|
|
251180
251514
|
await generateTypesFile({
|
|
251181
251515
|
projectRoot: project.root,
|
|
251182
251516
|
entities,
|
|
251183
251517
|
functions,
|
|
251518
|
+
actors,
|
|
251184
251519
|
agents,
|
|
251185
251520
|
connectors
|
|
251186
251521
|
});
|
|
@@ -251226,35 +251561,27 @@ async function createAction2({ runTask, jsonMode, app }, options) {
|
|
|
251226
251561
|
};
|
|
251227
251562
|
}
|
|
251228
251563
|
function getVersionCreateCommand() {
|
|
251229
|
-
return new Base44Command("create").description("Record the built output as a version, without deploying it").
|
|
251230
|
-
if (!isGitCommitHash(value)) {
|
|
251231
|
-
throw new InvalidArgumentError2("Expected a git commit hash (7-64 hex chars).");
|
|
251232
|
-
}
|
|
251233
|
-
return value;
|
|
251234
|
-
})).addOption(new Option2("--concurrency <n>", "Parallel file uploads").default(DEFAULT_VERSION_UPLOAD_CONCURRENCY).argParser((value) => {
|
|
251235
|
-
const parsed = Number(value);
|
|
251236
|
-
if (!Number.isInteger(parsed) || parsed < 1 || parsed > MAX_VERSION_UPLOAD_CONCURRENCY) {
|
|
251237
|
-
throw new InvalidArgumentError2(`Expected a whole number between 1 and ${MAX_VERSION_UPLOAD_CONCURRENCY}.`);
|
|
251238
|
-
}
|
|
251239
|
-
return parsed;
|
|
251240
|
-
})).action(createAction2);
|
|
251564
|
+
return new Base44Command("create").description("Record the built output as a version, without deploying it").addOption(outputDirOption()).addOption(gitHashOption()).addOption(concurrencyOption()).action(createAction2);
|
|
251241
251565
|
}
|
|
251242
251566
|
|
|
251243
251567
|
// src/cli/commands/versions/deploy.ts
|
|
251244
251568
|
import { randomUUID as randomUUID5 } from "node:crypto";
|
|
251245
251569
|
async function deployAction3({ runTask, jsonMode }, versionId, options) {
|
|
251246
|
-
const
|
|
251247
|
-
|
|
251570
|
+
const environment = options.target ?? DEFAULT_ENVIRONMENT;
|
|
251571
|
+
const result = await runTask(`Pointing ${environment} at ${versionId}...`, async () => await setEnvironmentVersion(environment, versionId, {
|
|
251248
251572
|
idempotencyKey: randomUUID5()
|
|
251249
|
-
}), {
|
|
251573
|
+
}), {
|
|
251574
|
+
successMessage: "Environment updated",
|
|
251575
|
+
errorMessage: "Could not update the environment"
|
|
251576
|
+
});
|
|
251250
251577
|
return {
|
|
251251
|
-
outroMessage:
|
|
251252
|
-
stdout: jsonMode ? `${JSON.stringify(
|
|
251578
|
+
outroMessage: `${result.name} now serves ${result.versionId}`,
|
|
251579
|
+
stdout: jsonMode ? `${JSON.stringify(result, null, 2)}
|
|
251253
251580
|
` : undefined
|
|
251254
251581
|
};
|
|
251255
251582
|
}
|
|
251256
251583
|
function getVersionDeployCommand() {
|
|
251257
|
-
return new Base44Command("deploy").description("
|
|
251584
|
+
return new Base44Command("deploy").description("Point an environment at an already-recorded version (also the rollback)").argument("<version-id>", "The version to serve").option("--target <name>", "Environment to point at it").action(deployAction3);
|
|
251258
251585
|
}
|
|
251259
251586
|
|
|
251260
251587
|
// src/cli/commands/versions/index.ts
|
|
@@ -251678,7 +252005,7 @@ function createDevLogger(label, labelColor = theme.styles.dim) {
|
|
|
251678
252005
|
// src/cli/dev/dev-server/main.ts
|
|
251679
252006
|
var import_cors = __toESM(require_lib4(), 1);
|
|
251680
252007
|
var import_express6 = __toESM(require_express(), 1);
|
|
251681
|
-
import { dirname as
|
|
252008
|
+
import { dirname as dirname27, join as join38 } from "node:path";
|
|
251682
252009
|
|
|
251683
252010
|
// ../../node_modules/get-port/index.js
|
|
251684
252011
|
import net from "node:net";
|
|
@@ -251808,7 +252135,7 @@ var $tmpName = promisify11(tmp.tmpName);
|
|
|
251808
252135
|
|
|
251809
252136
|
// src/cli/dev/dev-server/function-manager.ts
|
|
251810
252137
|
import { spawn as spawn2 } from "node:child_process";
|
|
251811
|
-
import { dirname as
|
|
252138
|
+
import { dirname as dirname24, join as join34 } from "node:path";
|
|
251812
252139
|
import { pathToFileURL } from "node:url";
|
|
251813
252140
|
|
|
251814
252141
|
// src/cli/dev/dev-server/base-function-manager.ts
|
|
@@ -251913,7 +252240,7 @@ class FunctionManager extends BaseFunctionManager {
|
|
|
251913
252240
|
}
|
|
251914
252241
|
spawnFunction(func, port) {
|
|
251915
252242
|
this.logger.log(`Spawning function "${func.name}" on port ${port}`);
|
|
251916
|
-
const importMapPath =
|
|
252243
|
+
const importMapPath = join34(dirname24(this.wrapperPath), "import-map.json");
|
|
251917
252244
|
const process2 = spawn2("deno", ["run", "--allow-all", "--import-map", importMapPath, this.wrapperPath], {
|
|
251918
252245
|
env: {
|
|
251919
252246
|
...globalThis.process.env,
|
|
@@ -251987,7 +252314,7 @@ class FunctionManager extends BaseFunctionManager {
|
|
|
251987
252314
|
import { mkdirSync as mkdirSync2, writeFileSync as writeFileSync2 } from "node:fs";
|
|
251988
252315
|
import { isBuiltin } from "node:module";
|
|
251989
252316
|
import { homedir as homedir3 } from "node:os";
|
|
251990
|
-
import { join as
|
|
252317
|
+
import { join as join35 } from "node:path";
|
|
251991
252318
|
import { pathToFileURL as pathToFileURL6 } from "node:url";
|
|
251992
252319
|
var depsPromise;
|
|
251993
252320
|
function loadDeps() {
|
|
@@ -252108,9 +252435,9 @@ export default {
|
|
|
252108
252435
|
};
|
|
252109
252436
|
`;
|
|
252110
252437
|
function ensureBundlerConfig() {
|
|
252111
|
-
const dir =
|
|
252438
|
+
const dir = join35(homedir3(), ".base44", "function-bundler");
|
|
252112
252439
|
mkdirSync2(dir, { recursive: true });
|
|
252113
|
-
const configPath =
|
|
252440
|
+
const configPath = join35(dir, "deno.json");
|
|
252114
252441
|
writeFileSync2(configPath, `${JSON.stringify({ nodeModulesDir: "auto" }, null, 2)}
|
|
252115
252442
|
`);
|
|
252116
252443
|
return configPath;
|
|
@@ -253580,7 +253907,7 @@ function createCustomIntegrationRoutes(remoteProxy, logger) {
|
|
|
253580
253907
|
|
|
253581
253908
|
// src/cli/dev/dev-server/watcher.ts
|
|
253582
253909
|
import { EventEmitter as EventEmitter4 } from "node:events";
|
|
253583
|
-
import { relative as
|
|
253910
|
+
import { relative as relative9 } from "node:path";
|
|
253584
253911
|
|
|
253585
253912
|
// ../../node_modules/chokidar/index.js
|
|
253586
253913
|
import { EventEmitter as EventEmitter3 } from "node:events";
|
|
@@ -255265,7 +255592,7 @@ class WatchBase44 extends EventEmitter4 {
|
|
|
255265
255592
|
ignoreInitial: true
|
|
255266
255593
|
});
|
|
255267
255594
|
watcher.on("all", import_debounce.default(async (_event, path) => {
|
|
255268
|
-
this.emit("change", name,
|
|
255595
|
+
this.emit("change", name, relative9(targetPath, path));
|
|
255269
255596
|
}, WATCH_DEBOUNCE_MS));
|
|
255270
255597
|
watcher.on("error", (err) => {
|
|
255271
255598
|
this.logger.error(`Watch handler failed for ${targetPath}`, err);
|
|
@@ -255302,6 +255629,11 @@ async function createDevServer(options) {
|
|
|
255302
255629
|
next();
|
|
255303
255630
|
});
|
|
255304
255631
|
const devLogger = createDevLogger("backend", theme.styles.info);
|
|
255632
|
+
app.use("/api/apps/:appId/actors", (_req, res) => {
|
|
255633
|
+
const message = "Actors are not available in local development";
|
|
255634
|
+
devLogger.error(message);
|
|
255635
|
+
res.status(500).json({ error: message });
|
|
255636
|
+
});
|
|
255305
255637
|
const functionManager = await createFunctionRuntime(functions, devLogger, options.denoWrapperPath);
|
|
255306
255638
|
const functionRoutes = createFunctionRouter(functionManager, devLogger);
|
|
255307
255639
|
app.use("/api/apps/:appId/functions", functionRoutes);
|
|
@@ -255372,8 +255704,8 @@ async function createDevServer(options) {
|
|
|
255372
255704
|
broadcastEntityEvent(io, appId, entityName, event);
|
|
255373
255705
|
};
|
|
255374
255706
|
const base44ConfigWatcher = new WatchBase44({
|
|
255375
|
-
functions:
|
|
255376
|
-
entities:
|
|
255707
|
+
functions: join38(dirname27(project.configPath), project.functionsDir),
|
|
255708
|
+
entities: join38(dirname27(project.configPath), project.entitiesDir)
|
|
255377
255709
|
}, devLogger);
|
|
255378
255710
|
base44ConfigWatcher.on("change", async (name) => {
|
|
255379
255711
|
try {
|
|
@@ -255901,7 +256233,7 @@ function createProgram(context) {
|
|
|
255901
256233
|
program.addCommand(getScaffoldCommand());
|
|
255902
256234
|
program.addCommand(getDashboardCommand());
|
|
255903
256235
|
program.addCommand(getBuildCommand());
|
|
255904
|
-
program.addCommand(
|
|
256236
|
+
program.addCommand(getDeployCommand3());
|
|
255905
256237
|
program.addCommand(getVisibilityCommand());
|
|
255906
256238
|
program.addCommand(getLinkCommand());
|
|
255907
256239
|
program.addCommand(getEjectCommand());
|
|
@@ -255911,14 +256243,17 @@ function createProgram(context) {
|
|
|
255911
256243
|
program.addCommand(getAgentSkillsCommand());
|
|
255912
256244
|
program.addCommand(getConnectorsCommand());
|
|
255913
256245
|
program.addCommand(getFunctionsCommand());
|
|
256246
|
+
program.addCommand(getActorsCommand());
|
|
255914
256247
|
program.addCommand(getWorkflowsCommand());
|
|
255915
256248
|
program.addCommand(getSecretsCommand());
|
|
255916
256249
|
program.addCommand(getSandboxCommand());
|
|
255917
256250
|
program.addCommand(getBranchesCommand());
|
|
255918
256251
|
program.addCommand(getAuthCommand());
|
|
255919
256252
|
program.addCommand(getSiteCommand());
|
|
255920
|
-
|
|
255921
|
-
|
|
256253
|
+
if (versionsApiEnabled()) {
|
|
256254
|
+
program.addCommand(getPublishCommand());
|
|
256255
|
+
program.addCommand(getVersionsCommand());
|
|
256256
|
+
}
|
|
255922
256257
|
program.addCommand(getTypesCommand());
|
|
255923
256258
|
program.addCommand(getExecCommand());
|
|
255924
256259
|
program.addCommand(getDevCommand());
|
|
@@ -255931,7 +256266,7 @@ var import_detect_agent = __toESM(require_dist5(), 1);
|
|
|
255931
256266
|
import { release, type } from "node:os";
|
|
255932
256267
|
|
|
255933
256268
|
// ../../node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
255934
|
-
import { dirname as
|
|
256269
|
+
import { dirname as dirname28, posix, sep as sep2 } from "path";
|
|
255935
256270
|
function createModulerModifier() {
|
|
255936
256271
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
255937
256272
|
return async (frames) => {
|
|
@@ -255940,7 +256275,7 @@ function createModulerModifier() {
|
|
|
255940
256275
|
return frames;
|
|
255941
256276
|
};
|
|
255942
256277
|
}
|
|
255943
|
-
function createGetModuleFromFilename(basePath = process.argv[1] ?
|
|
256278
|
+
function createGetModuleFromFilename(basePath = process.argv[1] ? dirname28(process.argv[1]) : process.cwd(), isWindows = sep2 === "\\") {
|
|
255944
256279
|
const normalizedBase = isWindows ? normalizeWindowsPath2(basePath) : basePath;
|
|
255945
256280
|
return (filename) => {
|
|
255946
256281
|
if (!filename)
|
|
@@ -259929,9 +260264,9 @@ function addCommandInfoToErrorReporter(program, errorReporter) {
|
|
|
259929
260264
|
});
|
|
259930
260265
|
}
|
|
259931
260266
|
// src/cli/index.ts
|
|
259932
|
-
var __dirname4 =
|
|
260267
|
+
var __dirname4 = dirname29(fileURLToPath6(import.meta.url));
|
|
259933
260268
|
async function runCLI(options) {
|
|
259934
|
-
ensureNpmAssets(
|
|
260269
|
+
ensureNpmAssets(join39(__dirname4, "../assets"));
|
|
259935
260270
|
const errorReporter = new ErrorReporter;
|
|
259936
260271
|
errorReporter.registerProcessErrorHandlers();
|
|
259937
260272
|
const jsonMode = process.argv.includes("--json");
|
|
@@ -259970,4 +260305,4 @@ export {
|
|
|
259970
260305
|
runCLI
|
|
259971
260306
|
};
|
|
259972
260307
|
|
|
259973
|
-
//# debugId=
|
|
260308
|
+
//# debugId=B07922109E14BECF64756E2164756E21
|