@base44-preview/cli 0.1.8-pr.600.002d9ac → 0.1.9-pr.584.ee1769c
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 +1119 -673
- package/dist/cli/index.js.map +19 -14
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -23352,15 +23352,15 @@ var require_windows = __commonJS((exports, module) => {
|
|
|
23352
23352
|
}
|
|
23353
23353
|
return false;
|
|
23354
23354
|
}
|
|
23355
|
-
function checkStat(
|
|
23356
|
-
if (!
|
|
23355
|
+
function checkStat(stat3, path11, options) {
|
|
23356
|
+
if (!stat3.isSymbolicLink() && !stat3.isFile()) {
|
|
23357
23357
|
return false;
|
|
23358
23358
|
}
|
|
23359
23359
|
return checkPathExt(path11, options);
|
|
23360
23360
|
}
|
|
23361
23361
|
function isexe(path11, options, cb) {
|
|
23362
|
-
fs14.stat(path11, function(er,
|
|
23363
|
-
cb(er, er ? false : checkStat(
|
|
23362
|
+
fs14.stat(path11, function(er, stat3) {
|
|
23363
|
+
cb(er, er ? false : checkStat(stat3, path11, options));
|
|
23364
23364
|
});
|
|
23365
23365
|
}
|
|
23366
23366
|
function sync(path11, options) {
|
|
@@ -23374,20 +23374,20 @@ var require_mode = __commonJS((exports, module) => {
|
|
|
23374
23374
|
isexe.sync = sync;
|
|
23375
23375
|
var fs14 = __require("fs");
|
|
23376
23376
|
function isexe(path11, options, cb) {
|
|
23377
|
-
fs14.stat(path11, function(er,
|
|
23378
|
-
cb(er, er ? false : checkStat(
|
|
23377
|
+
fs14.stat(path11, function(er, stat3) {
|
|
23378
|
+
cb(er, er ? false : checkStat(stat3, options));
|
|
23379
23379
|
});
|
|
23380
23380
|
}
|
|
23381
23381
|
function sync(path11, options) {
|
|
23382
23382
|
return checkStat(fs14.statSync(path11), options);
|
|
23383
23383
|
}
|
|
23384
|
-
function checkStat(
|
|
23385
|
-
return
|
|
23384
|
+
function checkStat(stat3, options) {
|
|
23385
|
+
return stat3.isFile() && checkMode(stat3, options);
|
|
23386
23386
|
}
|
|
23387
|
-
function checkMode(
|
|
23388
|
-
var mod =
|
|
23389
|
-
var uid =
|
|
23390
|
-
var gid =
|
|
23387
|
+
function checkMode(stat3, options) {
|
|
23388
|
+
var mod = stat3.mode;
|
|
23389
|
+
var uid = stat3.uid;
|
|
23390
|
+
var gid = stat3.gid;
|
|
23391
23391
|
var myUid = options.uid !== undefined ? options.uid : process.getuid && process.getuid();
|
|
23392
23392
|
var myGid = options.gid !== undefined ? options.gid : process.getgid && process.getgid();
|
|
23393
23393
|
var u = parseInt("100", 8);
|
|
@@ -23419,12 +23419,12 @@ var require_isexe = __commonJS((exports, module) => {
|
|
|
23419
23419
|
if (typeof Promise !== "function") {
|
|
23420
23420
|
throw new TypeError("callback not provided");
|
|
23421
23421
|
}
|
|
23422
|
-
return new Promise(function(
|
|
23422
|
+
return new Promise(function(resolve6, reject) {
|
|
23423
23423
|
isexe(path11, options || {}, function(er, is) {
|
|
23424
23424
|
if (er) {
|
|
23425
23425
|
reject(er);
|
|
23426
23426
|
} else {
|
|
23427
|
-
|
|
23427
|
+
resolve6(is);
|
|
23428
23428
|
}
|
|
23429
23429
|
});
|
|
23430
23430
|
});
|
|
@@ -23486,27 +23486,27 @@ var require_which = __commonJS((exports, module) => {
|
|
|
23486
23486
|
opt = {};
|
|
23487
23487
|
const { pathEnv, pathExt, pathExtExe } = getPathInfo(cmd, opt);
|
|
23488
23488
|
const found = [];
|
|
23489
|
-
const step = (i) => new Promise((
|
|
23489
|
+
const step = (i) => new Promise((resolve6, reject) => {
|
|
23490
23490
|
if (i === pathEnv.length)
|
|
23491
|
-
return opt.all && found.length ?
|
|
23491
|
+
return opt.all && found.length ? resolve6(found) : reject(getNotFoundError(cmd));
|
|
23492
23492
|
const ppRaw = pathEnv[i];
|
|
23493
23493
|
const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
|
|
23494
23494
|
const pCmd = path11.join(pathPart, cmd);
|
|
23495
23495
|
const p = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
|
|
23496
|
-
|
|
23496
|
+
resolve6(subStep(p, i, 0));
|
|
23497
23497
|
});
|
|
23498
|
-
const subStep = (p, i, ii) => new Promise((
|
|
23498
|
+
const subStep = (p, i, ii) => new Promise((resolve6, reject) => {
|
|
23499
23499
|
if (ii === pathExt.length)
|
|
23500
|
-
return
|
|
23500
|
+
return resolve6(step(i + 1));
|
|
23501
23501
|
const ext = pathExt[ii];
|
|
23502
23502
|
isexe(p + ext, { pathExt: pathExtExe }, (er, is) => {
|
|
23503
23503
|
if (!er && is) {
|
|
23504
23504
|
if (opt.all)
|
|
23505
23505
|
found.push(p + ext);
|
|
23506
23506
|
else
|
|
23507
|
-
return
|
|
23507
|
+
return resolve6(p + ext);
|
|
23508
23508
|
}
|
|
23509
|
-
return
|
|
23509
|
+
return resolve6(subStep(p, i, ii + 1));
|
|
23510
23510
|
});
|
|
23511
23511
|
});
|
|
23512
23512
|
return cb ? step(0).then((res) => cb(null, res), cb) : step(0);
|
|
@@ -27034,7 +27034,7 @@ var require_lodash8 = __commonJS((exports, module) => {
|
|
|
27034
27034
|
}
|
|
27035
27035
|
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, undefined2, comparator) : [];
|
|
27036
27036
|
});
|
|
27037
|
-
function
|
|
27037
|
+
function join18(array2, separator) {
|
|
27038
27038
|
return array2 == null ? "" : nativeJoin.call(array2, separator);
|
|
27039
27039
|
}
|
|
27040
27040
|
function last(array2) {
|
|
@@ -28966,7 +28966,7 @@ __p += '`;
|
|
|
28966
28966
|
lodash.isUndefined = isUndefined;
|
|
28967
28967
|
lodash.isWeakMap = isWeakMap;
|
|
28968
28968
|
lodash.isWeakSet = isWeakSet;
|
|
28969
|
-
lodash.join =
|
|
28969
|
+
lodash.join = join18;
|
|
28970
28970
|
lodash.kebabCase = kebabCase;
|
|
28971
28971
|
lodash.last = last;
|
|
28972
28972
|
lodash.lastIndexOf = lastIndexOf;
|
|
@@ -31176,7 +31176,7 @@ function cleanDoc(doc2) {
|
|
|
31176
31176
|
return mapDoc(doc2, (currentDoc) => cleanDocFn(currentDoc));
|
|
31177
31177
|
}
|
|
31178
31178
|
function replaceEndOfLine(doc2, replacement = literalline) {
|
|
31179
|
-
return mapDoc(doc2, (currentDoc) => typeof currentDoc === "string" ?
|
|
31179
|
+
return mapDoc(doc2, (currentDoc) => typeof currentDoc === "string" ? join27(replacement, currentDoc.split(`
|
|
31180
31180
|
`)) : currentDoc);
|
|
31181
31181
|
}
|
|
31182
31182
|
function canBreakFn(doc2) {
|
|
@@ -31256,7 +31256,7 @@ function indentIfBreak(contents, options) {
|
|
|
31256
31256
|
negate: options.negate
|
|
31257
31257
|
};
|
|
31258
31258
|
}
|
|
31259
|
-
function
|
|
31259
|
+
function join27(separator, docs) {
|
|
31260
31260
|
assertDoc(separator);
|
|
31261
31261
|
assertDocArray(docs);
|
|
31262
31262
|
const parts = [];
|
|
@@ -31967,7 +31967,7 @@ var init_doc = __esm(() => {
|
|
|
31967
31967
|
MODE_FLAT = Symbol("MODE_FLAT");
|
|
31968
31968
|
DOC_FILL_PRINTED_LENGTH = Symbol("DOC_FILL_PRINTED_LENGTH");
|
|
31969
31969
|
builders = {
|
|
31970
|
-
join:
|
|
31970
|
+
join: join27,
|
|
31971
31971
|
line,
|
|
31972
31972
|
softline,
|
|
31973
31973
|
hardline,
|
|
@@ -120385,7 +120385,7 @@ function skipVoid(str, ptr, banNewLines, banComments) {
|
|
|
120385
120385
|
ptr++;
|
|
120386
120386
|
return banComments || c24 !== "#" ? ptr : skipVoid(str, skipComment(str, ptr), banNewLines);
|
|
120387
120387
|
}
|
|
120388
|
-
function skipUntil(str, ptr,
|
|
120388
|
+
function skipUntil(str, ptr, sep2, end, banNewLines = false) {
|
|
120389
120389
|
if (!end) {
|
|
120390
120390
|
ptr = indexOfNewline(str, ptr);
|
|
120391
120391
|
return ptr < 0 ? str.length : ptr;
|
|
@@ -120394,7 +120394,7 @@ function skipUntil(str, ptr, sep, end, banNewLines = false) {
|
|
|
120394
120394
|
let c24 = str[i5];
|
|
120395
120395
|
if (c24 === "#") {
|
|
120396
120396
|
i5 = indexOfNewline(str, i5);
|
|
120397
|
-
} else if (c24 ===
|
|
120397
|
+
} else if (c24 === sep2) {
|
|
120398
120398
|
return i5 + 1;
|
|
120399
120399
|
} else if (c24 === end || banNewLines && (c24 === `
|
|
120400
120400
|
` || c24 === "\r" && str[i5 + 1] === `
|
|
@@ -121174,7 +121174,7 @@ function getDataProtocolModuleFormat(parsed) {
|
|
|
121174
121174
|
const { 1: mime } = /^([^/]+\/[^;,]+)[^,]*?(;base64)?,/.exec(parsed.pathname) || [null, null, null];
|
|
121175
121175
|
return mimeToFormat(mime);
|
|
121176
121176
|
}
|
|
121177
|
-
function
|
|
121177
|
+
function extname2(url3) {
|
|
121178
121178
|
const pathname = url3.pathname;
|
|
121179
121179
|
let index = pathname.length;
|
|
121180
121180
|
while (index--) {
|
|
@@ -121189,7 +121189,7 @@ function extname(url3) {
|
|
|
121189
121189
|
return "";
|
|
121190
121190
|
}
|
|
121191
121191
|
function getFileProtocolModuleFormat(url3, _context, ignoreErrors) {
|
|
121192
|
-
const value =
|
|
121192
|
+
const value = extname2(url3);
|
|
121193
121193
|
if (value === ".js") {
|
|
121194
121194
|
const packageType = getPackageType(url3);
|
|
121195
121195
|
if (packageType !== "none") {
|
|
@@ -123904,14 +123904,14 @@ async function printToDoc(originalText, options8) {
|
|
|
123904
123904
|
async function printDocToString2(doc2, options8) {
|
|
123905
123905
|
return printDocToStringWithoutNormalizeOptions(doc2, await normalize_format_options_default(options8));
|
|
123906
123906
|
}
|
|
123907
|
-
function createParsersAndPrinters(
|
|
123907
|
+
function createParsersAndPrinters(modules2) {
|
|
123908
123908
|
const parsers2 = /* @__PURE__ */ Object.create(null);
|
|
123909
123909
|
const printers2 = /* @__PURE__ */ Object.create(null);
|
|
123910
123910
|
for (const {
|
|
123911
123911
|
importPlugin: importPlugin2,
|
|
123912
123912
|
parsers: parserNames = [],
|
|
123913
123913
|
printers: printerNames = []
|
|
123914
|
-
} of
|
|
123914
|
+
} of modules2) {
|
|
123915
123915
|
const loadPlugin2 = async () => {
|
|
123916
123916
|
const plugin = await importPlugin2();
|
|
123917
123917
|
Object.assign(parsers2, plugin.parsers);
|
|
@@ -136881,7 +136881,7 @@ Expected it to be ${EXPECTED_TYPE_VALUES}.`;
|
|
|
136881
136881
|
return mapDoc2(doc2, (currentDoc) => cleanDocFn2(currentDoc));
|
|
136882
136882
|
}
|
|
136883
136883
|
function replaceEndOfLine2(doc2, replacement = literalline2) {
|
|
136884
|
-
return mapDoc2(doc2, (currentDoc) => typeof currentDoc === "string" ?
|
|
136884
|
+
return mapDoc2(doc2, (currentDoc) => typeof currentDoc === "string" ? join29(replacement, currentDoc.split(`
|
|
136885
136885
|
`)) : currentDoc);
|
|
136886
136886
|
}
|
|
136887
136887
|
function canBreakFn2(doc2) {
|
|
@@ -136967,7 +136967,7 @@ Expected it to be ${EXPECTED_TYPE_VALUES}.`;
|
|
|
136967
136967
|
negate: options8.negate
|
|
136968
136968
|
};
|
|
136969
136969
|
}
|
|
136970
|
-
function
|
|
136970
|
+
function join29(separator, docs) {
|
|
136971
136971
|
assertDoc2(separator);
|
|
136972
136972
|
assertDocArray2(docs);
|
|
136973
136973
|
const parts = [];
|
|
@@ -137632,7 +137632,7 @@ Expected it to be ${EXPECTED_TYPE_VALUES}.`;
|
|
|
137632
137632
|
}
|
|
137633
137633
|
}
|
|
137634
137634
|
var builders2 = {
|
|
137635
|
-
join:
|
|
137635
|
+
join: join29,
|
|
137636
137636
|
line: line3,
|
|
137637
137637
|
softline: softline2,
|
|
137638
137638
|
hardline: hardline4,
|
|
@@ -138287,11 +138287,11 @@ var require_prettier = __commonJS((exports, module) => {
|
|
|
138287
138287
|
var require_formatter = __commonJS((exports) => {
|
|
138288
138288
|
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P9, generator) {
|
|
138289
138289
|
function adopt(value) {
|
|
138290
|
-
return value instanceof P9 ? value : new P9(function(
|
|
138291
|
-
|
|
138290
|
+
return value instanceof P9 ? value : new P9(function(resolve15) {
|
|
138291
|
+
resolve15(value);
|
|
138292
138292
|
});
|
|
138293
138293
|
}
|
|
138294
|
-
return new (P9 || (P9 = Promise))(function(
|
|
138294
|
+
return new (P9 || (P9 = Promise))(function(resolve15, reject) {
|
|
138295
138295
|
function fulfilled(value) {
|
|
138296
138296
|
try {
|
|
138297
138297
|
step(generator.next(value));
|
|
@@ -138307,7 +138307,7 @@ var require_formatter = __commonJS((exports) => {
|
|
|
138307
138307
|
}
|
|
138308
138308
|
}
|
|
138309
138309
|
function step(result) {
|
|
138310
|
-
result.done ?
|
|
138310
|
+
result.done ? resolve15(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
138311
138311
|
}
|
|
138312
138312
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
138313
138313
|
});
|
|
@@ -142960,7 +142960,7 @@ var require_url = __commonJS((exports) => {
|
|
|
142960
142960
|
};
|
|
142961
142961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
142962
142962
|
exports.parse = undefined;
|
|
142963
|
-
exports.resolve =
|
|
142963
|
+
exports.resolve = resolve15;
|
|
142964
142964
|
exports.cwd = cwd;
|
|
142965
142965
|
exports.getProtocol = getProtocol;
|
|
142966
142966
|
exports.getExtension = getExtension;
|
|
@@ -142972,7 +142972,7 @@ var require_url = __commonJS((exports) => {
|
|
|
142972
142972
|
exports.fromFileSystemPath = fromFileSystemPath;
|
|
142973
142973
|
exports.toFileSystemPath = toFileSystemPath;
|
|
142974
142974
|
exports.safePointerToPath = safePointerToPath;
|
|
142975
|
-
exports.relative =
|
|
142975
|
+
exports.relative = relative5;
|
|
142976
142976
|
var convert_path_to_posix_1 = __importDefault(require_convert_path_to_posix());
|
|
142977
142977
|
var path_1 = __importStar(__require("path"));
|
|
142978
142978
|
var forwardSlashPattern = /\//g;
|
|
@@ -142988,7 +142988,7 @@ var require_url = __commonJS((exports) => {
|
|
|
142988
142988
|
var urlDecodePatterns = [/%23/g, "#", /%24/g, "$", /%26/g, "&", /%2C/g, ",", /%40/g, "@"];
|
|
142989
142989
|
var parse11 = (u4) => new URL(u4);
|
|
142990
142990
|
exports.parse = parse11;
|
|
142991
|
-
function
|
|
142991
|
+
function resolve15(from, to5) {
|
|
142992
142992
|
const fromUrl = new URL((0, convert_path_to_posix_1.default)(from), "https://aaa.nonexistanturl.com");
|
|
142993
142993
|
const resolvedUrl = new URL((0, convert_path_to_posix_1.default)(to5), fromUrl);
|
|
142994
142994
|
const endSpaces = to5.match(/(\s*)$/)?.[1] || "";
|
|
@@ -143122,9 +143122,9 @@ var require_url = __commonJS((exports) => {
|
|
|
143122
143122
|
return decodeURIComponent(value).replace(jsonPointerSlash, "/").replace(jsonPointerTilde, "~");
|
|
143123
143123
|
});
|
|
143124
143124
|
}
|
|
143125
|
-
function
|
|
143125
|
+
function relative5(from, to5) {
|
|
143126
143126
|
if (!isFileSystemPath(from) || !isFileSystemPath(to5)) {
|
|
143127
|
-
return
|
|
143127
|
+
return resolve15(from, to5);
|
|
143128
143128
|
}
|
|
143129
143129
|
const fromDir = path_1.default.dirname(stripHash(from));
|
|
143130
143130
|
const toPath4 = stripHash(to5);
|
|
@@ -143800,7 +143800,7 @@ var require_plugins = __commonJS((exports) => {
|
|
|
143800
143800
|
let plugin;
|
|
143801
143801
|
let lastError;
|
|
143802
143802
|
let index = 0;
|
|
143803
|
-
return new Promise((
|
|
143803
|
+
return new Promise((resolve15, reject) => {
|
|
143804
143804
|
runNextPlugin();
|
|
143805
143805
|
function runNextPlugin() {
|
|
143806
143806
|
plugin = plugins[index++];
|
|
@@ -143828,7 +143828,7 @@ var require_plugins = __commonJS((exports) => {
|
|
|
143828
143828
|
}
|
|
143829
143829
|
}
|
|
143830
143830
|
function onSuccess(result) {
|
|
143831
|
-
|
|
143831
|
+
resolve15({
|
|
143832
143832
|
plugin,
|
|
143833
143833
|
result
|
|
143834
143834
|
});
|
|
@@ -145161,11 +145161,11 @@ var require_lib3 = __commonJS((exports) => {
|
|
|
145161
145161
|
var require_resolver = __commonJS((exports) => {
|
|
145162
145162
|
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P9, generator) {
|
|
145163
145163
|
function adopt(value) {
|
|
145164
|
-
return value instanceof P9 ? value : new P9(function(
|
|
145165
|
-
|
|
145164
|
+
return value instanceof P9 ? value : new P9(function(resolve15) {
|
|
145165
|
+
resolve15(value);
|
|
145166
145166
|
});
|
|
145167
145167
|
}
|
|
145168
|
-
return new (P9 || (P9 = Promise))(function(
|
|
145168
|
+
return new (P9 || (P9 = Promise))(function(resolve15, reject) {
|
|
145169
145169
|
function fulfilled(value) {
|
|
145170
145170
|
try {
|
|
145171
145171
|
step(generator.next(value));
|
|
@@ -145181,7 +145181,7 @@ var require_resolver = __commonJS((exports) => {
|
|
|
145181
145181
|
}
|
|
145182
145182
|
}
|
|
145183
145183
|
function step(result) {
|
|
145184
|
-
result.done ?
|
|
145184
|
+
result.done ? resolve15(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
145185
145185
|
}
|
|
145186
145186
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
145187
145187
|
});
|
|
@@ -145302,11 +145302,11 @@ var require_optionValidator = __commonJS((exports) => {
|
|
|
145302
145302
|
var require_src3 = __commonJS((exports) => {
|
|
145303
145303
|
var __awaiter = exports && exports.__awaiter || function(thisArg, _arguments, P9, generator) {
|
|
145304
145304
|
function adopt(value) {
|
|
145305
|
-
return value instanceof P9 ? value : new P9(function(
|
|
145306
|
-
|
|
145305
|
+
return value instanceof P9 ? value : new P9(function(resolve15) {
|
|
145306
|
+
resolve15(value);
|
|
145307
145307
|
});
|
|
145308
145308
|
}
|
|
145309
|
-
return new (P9 || (P9 = Promise))(function(
|
|
145309
|
+
return new (P9 || (P9 = Promise))(function(resolve15, reject) {
|
|
145310
145310
|
function fulfilled(value) {
|
|
145311
145311
|
try {
|
|
145312
145312
|
step(generator.next(value));
|
|
@@ -145322,7 +145322,7 @@ var require_src3 = __commonJS((exports) => {
|
|
|
145322
145322
|
}
|
|
145323
145323
|
}
|
|
145324
145324
|
function step(result) {
|
|
145325
|
-
result.done ?
|
|
145325
|
+
result.done ? resolve15(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
145326
145326
|
}
|
|
145327
145327
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
145328
145328
|
});
|
|
@@ -146451,7 +146451,7 @@ var require_depd = __commonJS((exports, module) => {
|
|
|
146451
146451
|
* Copyright(c) 2014-2018 Douglas Christopher Wilson
|
|
146452
146452
|
* MIT Licensed
|
|
146453
146453
|
*/
|
|
146454
|
-
var
|
|
146454
|
+
var relative5 = __require("path").relative;
|
|
146455
146455
|
module.exports = depd;
|
|
146456
146456
|
var basePath = process.cwd();
|
|
146457
146457
|
function containsNamespace(str, namespace) {
|
|
@@ -146647,7 +146647,7 @@ var require_depd = __commonJS((exports, module) => {
|
|
|
146647
146647
|
return formatted;
|
|
146648
146648
|
}
|
|
146649
146649
|
function formatLocation(callSite) {
|
|
146650
|
-
return
|
|
146650
|
+
return relative5(basePath, callSite[0]) + ":" + callSite[1] + ":" + callSite[2];
|
|
146651
146651
|
}
|
|
146652
146652
|
function getStack() {
|
|
146653
146653
|
var limit = Error.stackTraceLimit;
|
|
@@ -150643,7 +150643,7 @@ var require_dbcs_data = __commonJS((exports, module) => {
|
|
|
150643
150643
|
// ../../node_modules/iconv-lite/encodings/index.js
|
|
150644
150644
|
var require_encodings = __commonJS((exports, module) => {
|
|
150645
150645
|
var mergeModules = require_merge_exports();
|
|
150646
|
-
var
|
|
150646
|
+
var modules2 = [
|
|
150647
150647
|
require_internal(),
|
|
150648
150648
|
require_utf32(),
|
|
150649
150649
|
require_utf16(),
|
|
@@ -150654,8 +150654,8 @@ var require_encodings = __commonJS((exports, module) => {
|
|
|
150654
150654
|
require_dbcs_codec(),
|
|
150655
150655
|
require_dbcs_data()
|
|
150656
150656
|
];
|
|
150657
|
-
for (i5 = 0;i5 <
|
|
150658
|
-
module =
|
|
150657
|
+
for (i5 = 0;i5 < modules2.length; i5++) {
|
|
150658
|
+
module = modules2[i5];
|
|
150659
150659
|
mergeModules(exports, module);
|
|
150660
150660
|
}
|
|
150661
150661
|
var module;
|
|
@@ -150984,11 +150984,11 @@ var require_raw_body = __commonJS((exports, module) => {
|
|
|
150984
150984
|
if (done) {
|
|
150985
150985
|
return readStream(stream, encoding, length, limit, wrap(done));
|
|
150986
150986
|
}
|
|
150987
|
-
return new Promise(function executor(
|
|
150987
|
+
return new Promise(function executor(resolve15, reject) {
|
|
150988
150988
|
readStream(stream, encoding, length, limit, function onRead2(err, buf) {
|
|
150989
150989
|
if (err)
|
|
150990
150990
|
return reject(err);
|
|
150991
|
-
|
|
150991
|
+
resolve15(buf);
|
|
150992
150992
|
});
|
|
150993
150993
|
});
|
|
150994
150994
|
}
|
|
@@ -160792,7 +160792,7 @@ var require_mime_types = __commonJS((exports) => {
|
|
|
160792
160792
|
* MIT Licensed
|
|
160793
160793
|
*/
|
|
160794
160794
|
var db2 = require_db();
|
|
160795
|
-
var
|
|
160795
|
+
var extname3 = __require("path").extname;
|
|
160796
160796
|
var mimeScore = require_mimeScore();
|
|
160797
160797
|
var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/;
|
|
160798
160798
|
var TEXT_TYPE_REGEXP = /^text\//i;
|
|
@@ -160849,7 +160849,7 @@ var require_mime_types = __commonJS((exports) => {
|
|
|
160849
160849
|
if (!path18 || typeof path18 !== "string") {
|
|
160850
160850
|
return false;
|
|
160851
160851
|
}
|
|
160852
|
-
var extension2 =
|
|
160852
|
+
var extension2 = extname3("x." + path18).toLowerCase().slice(1);
|
|
160853
160853
|
if (!extension2) {
|
|
160854
160854
|
return false;
|
|
160855
160855
|
}
|
|
@@ -164109,16 +164109,16 @@ var require_view = __commonJS((exports, module) => {
|
|
|
164109
164109
|
var debug = require_src4()("express:view");
|
|
164110
164110
|
var path18 = __require("node:path");
|
|
164111
164111
|
var fs28 = __require("node:fs");
|
|
164112
|
-
var
|
|
164112
|
+
var dirname21 = path18.dirname;
|
|
164113
164113
|
var basename7 = path18.basename;
|
|
164114
|
-
var
|
|
164115
|
-
var
|
|
164116
|
-
var
|
|
164114
|
+
var extname3 = path18.extname;
|
|
164115
|
+
var join30 = path18.join;
|
|
164116
|
+
var resolve15 = path18.resolve;
|
|
164117
164117
|
module.exports = View;
|
|
164118
164118
|
function View(name2, options8) {
|
|
164119
164119
|
var opts = options8 || {};
|
|
164120
164120
|
this.defaultEngine = opts.defaultEngine;
|
|
164121
|
-
this.ext =
|
|
164121
|
+
this.ext = extname3(name2);
|
|
164122
164122
|
this.name = name2;
|
|
164123
164123
|
this.root = opts.root;
|
|
164124
164124
|
if (!this.ext && !this.defaultEngine) {
|
|
@@ -164147,8 +164147,8 @@ var require_view = __commonJS((exports, module) => {
|
|
|
164147
164147
|
debug('lookup "%s"', name2);
|
|
164148
164148
|
for (var i5 = 0;i5 < roots.length && !path19; i5++) {
|
|
164149
164149
|
var root2 = roots[i5];
|
|
164150
|
-
var loc =
|
|
164151
|
-
var dir =
|
|
164150
|
+
var loc = resolve15(root2, name2);
|
|
164151
|
+
var dir = dirname21(loc);
|
|
164152
164152
|
var file2 = basename7(loc);
|
|
164153
164153
|
path19 = this.resolve(dir, file2);
|
|
164154
164154
|
}
|
|
@@ -164172,16 +164172,16 @@ var require_view = __commonJS((exports, module) => {
|
|
|
164172
164172
|
});
|
|
164173
164173
|
sync = false;
|
|
164174
164174
|
};
|
|
164175
|
-
View.prototype.resolve = function
|
|
164175
|
+
View.prototype.resolve = function resolve16(dir, file2) {
|
|
164176
164176
|
var ext = this.ext;
|
|
164177
|
-
var path19 =
|
|
164178
|
-
var
|
|
164179
|
-
if (
|
|
164177
|
+
var path19 = join30(dir, file2);
|
|
164178
|
+
var stat4 = tryStat(path19);
|
|
164179
|
+
if (stat4 && stat4.isFile()) {
|
|
164180
164180
|
return path19;
|
|
164181
164181
|
}
|
|
164182
|
-
path19 =
|
|
164183
|
-
|
|
164184
|
-
if (
|
|
164182
|
+
path19 = join30(dir, basename7(file2, ext), "index" + ext);
|
|
164183
|
+
stat4 = tryStat(path19);
|
|
164184
|
+
if (stat4 && stat4.isFile()) {
|
|
164185
164185
|
return path19;
|
|
164186
164186
|
}
|
|
164187
164187
|
};
|
|
@@ -164232,9 +164232,9 @@ var require_etag = __commonJS((exports, module) => {
|
|
|
164232
164232
|
}
|
|
164233
164233
|
return obj && typeof obj === "object" && "ctime" in obj && toString2.call(obj.ctime) === "[object Date]" && "mtime" in obj && toString2.call(obj.mtime) === "[object Date]" && "ino" in obj && typeof obj.ino === "number" && "size" in obj && typeof obj.size === "number";
|
|
164234
164234
|
}
|
|
164235
|
-
function stattag(
|
|
164236
|
-
var mtime =
|
|
164237
|
-
var size =
|
|
164235
|
+
function stattag(stat4) {
|
|
164236
|
+
var mtime = stat4.mtime.getTime().toString(16);
|
|
164237
|
+
var size = stat4.size.toString(16);
|
|
164238
164238
|
return '"' + size + "-" + mtime + '"';
|
|
164239
164239
|
}
|
|
164240
164240
|
});
|
|
@@ -166331,7 +166331,7 @@ var require_application = __commonJS((exports, module) => {
|
|
|
166331
166331
|
var compileETag = require_utils10().compileETag;
|
|
166332
166332
|
var compileQueryParser = require_utils10().compileQueryParser;
|
|
166333
166333
|
var compileTrust = require_utils10().compileTrust;
|
|
166334
|
-
var
|
|
166334
|
+
var resolve15 = __require("node:path").resolve;
|
|
166335
166335
|
var once9 = require_once();
|
|
166336
166336
|
var Router = require_router();
|
|
166337
166337
|
var slice = Array.prototype.slice;
|
|
@@ -166385,7 +166385,7 @@ var require_application = __commonJS((exports, module) => {
|
|
|
166385
166385
|
this.mountpath = "/";
|
|
166386
166386
|
this.locals.settings = this.settings;
|
|
166387
166387
|
this.set("view", View);
|
|
166388
|
-
this.set("views",
|
|
166388
|
+
this.set("views", resolve15("views"));
|
|
166389
166389
|
this.set("jsonp callback name", "callback");
|
|
166390
166390
|
if (env4 === "production") {
|
|
166391
166391
|
this.enable("view cache");
|
|
@@ -167873,11 +167873,11 @@ var require_send = __commonJS((exports, module) => {
|
|
|
167873
167873
|
var statuses = require_statuses();
|
|
167874
167874
|
var Stream2 = __require("stream");
|
|
167875
167875
|
var util2 = __require("util");
|
|
167876
|
-
var
|
|
167877
|
-
var
|
|
167876
|
+
var extname3 = path18.extname;
|
|
167877
|
+
var join30 = path18.join;
|
|
167878
167878
|
var normalize2 = path18.normalize;
|
|
167879
|
-
var
|
|
167880
|
-
var
|
|
167879
|
+
var resolve15 = path18.resolve;
|
|
167880
|
+
var sep2 = path18.sep;
|
|
167881
167881
|
var BYTES_RANGE_REGEXP = /^ *bytes=/;
|
|
167882
167882
|
var MAX_MAXAGE = 60 * 60 * 24 * 365 * 1000;
|
|
167883
167883
|
var UP_PATH_REGEXP = /(?:^|[\\/])\.\.(?:[\\/]|$)/;
|
|
@@ -167905,7 +167905,7 @@ var require_send = __commonJS((exports, module) => {
|
|
|
167905
167905
|
this._maxage = opts.maxAge || opts.maxage;
|
|
167906
167906
|
this._maxage = typeof this._maxage === "string" ? ms9(this._maxage) : Number(this._maxage);
|
|
167907
167907
|
this._maxage = !isNaN(this._maxage) ? Math.min(Math.max(0, this._maxage), MAX_MAXAGE) : 0;
|
|
167908
|
-
this._root = opts.root ?
|
|
167908
|
+
this._root = opts.root ? resolve15(opts.root) : null;
|
|
167909
167909
|
}
|
|
167910
167910
|
util2.inherits(SendStream, Stream2);
|
|
167911
167911
|
SendStream.prototype.error = function error48(status, err) {
|
|
@@ -168038,23 +168038,23 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168038
168038
|
var parts;
|
|
168039
168039
|
if (root2 !== null) {
|
|
168040
168040
|
if (path19) {
|
|
168041
|
-
path19 = normalize2("." +
|
|
168041
|
+
path19 = normalize2("." + sep2 + path19);
|
|
168042
168042
|
}
|
|
168043
168043
|
if (UP_PATH_REGEXP.test(path19)) {
|
|
168044
168044
|
debug('malicious path "%s"', path19);
|
|
168045
168045
|
this.error(403);
|
|
168046
168046
|
return res;
|
|
168047
168047
|
}
|
|
168048
|
-
parts = path19.split(
|
|
168049
|
-
path19 = normalize2(
|
|
168048
|
+
parts = path19.split(sep2);
|
|
168049
|
+
path19 = normalize2(join30(root2, path19));
|
|
168050
168050
|
} else {
|
|
168051
168051
|
if (UP_PATH_REGEXP.test(path19)) {
|
|
168052
168052
|
debug('malicious path "%s"', path19);
|
|
168053
168053
|
this.error(403);
|
|
168054
168054
|
return res;
|
|
168055
168055
|
}
|
|
168056
|
-
parts = normalize2(path19).split(
|
|
168057
|
-
path19 =
|
|
168056
|
+
parts = normalize2(path19).split(sep2);
|
|
168057
|
+
path19 = resolve15(path19);
|
|
168058
168058
|
}
|
|
168059
168059
|
if (containsDotFile(parts)) {
|
|
168060
168060
|
debug('%s dotfile "%s"', this._dotfiles, path19);
|
|
@@ -168077,8 +168077,8 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168077
168077
|
this.sendFile(path19);
|
|
168078
168078
|
return res;
|
|
168079
168079
|
};
|
|
168080
|
-
SendStream.prototype.send = function send2(path19,
|
|
168081
|
-
var len =
|
|
168080
|
+
SendStream.prototype.send = function send2(path19, stat4) {
|
|
168081
|
+
var len = stat4.size;
|
|
168082
168082
|
var options8 = this.options;
|
|
168083
168083
|
var opts = {};
|
|
168084
168084
|
var res = this.res;
|
|
@@ -168090,7 +168090,7 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168090
168090
|
return;
|
|
168091
168091
|
}
|
|
168092
168092
|
debug('pipe "%s"', path19);
|
|
168093
|
-
this.setHeader(path19,
|
|
168093
|
+
this.setHeader(path19, stat4);
|
|
168094
168094
|
this.type(path19);
|
|
168095
168095
|
if (this.isConditionalGET()) {
|
|
168096
168096
|
if (this.isPreconditionFailure()) {
|
|
@@ -168147,19 +168147,19 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168147
168147
|
var i5 = 0;
|
|
168148
168148
|
var self2 = this;
|
|
168149
168149
|
debug('stat "%s"', path19);
|
|
168150
|
-
fs28.stat(path19, function onstat(err,
|
|
168151
|
-
var pathEndsWithSep = path19[path19.length - 1] ===
|
|
168152
|
-
if (err && err.code === "ENOENT" && !
|
|
168150
|
+
fs28.stat(path19, function onstat(err, stat4) {
|
|
168151
|
+
var pathEndsWithSep = path19[path19.length - 1] === sep2;
|
|
168152
|
+
if (err && err.code === "ENOENT" && !extname3(path19) && !pathEndsWithSep) {
|
|
168153
168153
|
return next(err);
|
|
168154
168154
|
}
|
|
168155
168155
|
if (err)
|
|
168156
168156
|
return self2.onStatError(err);
|
|
168157
|
-
if (
|
|
168157
|
+
if (stat4.isDirectory())
|
|
168158
168158
|
return self2.redirect(path19);
|
|
168159
168159
|
if (pathEndsWithSep)
|
|
168160
168160
|
return self2.error(404);
|
|
168161
|
-
self2.emit("file", path19,
|
|
168162
|
-
self2.send(path19,
|
|
168161
|
+
self2.emit("file", path19, stat4);
|
|
168162
|
+
self2.send(path19, stat4);
|
|
168163
168163
|
});
|
|
168164
168164
|
function next(err) {
|
|
168165
168165
|
if (self2._extensions.length <= i5) {
|
|
@@ -168167,13 +168167,13 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168167
168167
|
}
|
|
168168
168168
|
var p4 = path19 + "." + self2._extensions[i5++];
|
|
168169
168169
|
debug('stat "%s"', p4);
|
|
168170
|
-
fs28.stat(p4, function(err2,
|
|
168170
|
+
fs28.stat(p4, function(err2, stat4) {
|
|
168171
168171
|
if (err2)
|
|
168172
168172
|
return next(err2);
|
|
168173
|
-
if (
|
|
168173
|
+
if (stat4.isDirectory())
|
|
168174
168174
|
return next();
|
|
168175
|
-
self2.emit("file", p4,
|
|
168176
|
-
self2.send(p4,
|
|
168175
|
+
self2.emit("file", p4, stat4);
|
|
168176
|
+
self2.send(p4, stat4);
|
|
168177
168177
|
});
|
|
168178
168178
|
}
|
|
168179
168179
|
};
|
|
@@ -168186,15 +168186,15 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168186
168186
|
return self2.onStatError(err);
|
|
168187
168187
|
return self2.error(404);
|
|
168188
168188
|
}
|
|
168189
|
-
var p4 =
|
|
168189
|
+
var p4 = join30(path19, self2._index[i5]);
|
|
168190
168190
|
debug('stat "%s"', p4);
|
|
168191
|
-
fs28.stat(p4, function(err2,
|
|
168191
|
+
fs28.stat(p4, function(err2, stat4) {
|
|
168192
168192
|
if (err2)
|
|
168193
168193
|
return next(err2);
|
|
168194
|
-
if (
|
|
168194
|
+
if (stat4.isDirectory())
|
|
168195
168195
|
return next();
|
|
168196
|
-
self2.emit("file", p4,
|
|
168197
|
-
self2.send(p4,
|
|
168196
|
+
self2.emit("file", p4, stat4);
|
|
168197
|
+
self2.send(p4, stat4);
|
|
168198
168198
|
});
|
|
168199
168199
|
}
|
|
168200
168200
|
next();
|
|
@@ -168221,14 +168221,14 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168221
168221
|
var res = this.res;
|
|
168222
168222
|
if (res.getHeader("Content-Type"))
|
|
168223
168223
|
return;
|
|
168224
|
-
var ext =
|
|
168224
|
+
var ext = extname3(path19);
|
|
168225
168225
|
var type2 = mime.contentType(ext) || "application/octet-stream";
|
|
168226
168226
|
debug("content-type %s", type2);
|
|
168227
168227
|
res.setHeader("Content-Type", type2);
|
|
168228
168228
|
};
|
|
168229
|
-
SendStream.prototype.setHeader = function setHeader(path19,
|
|
168229
|
+
SendStream.prototype.setHeader = function setHeader(path19, stat4) {
|
|
168230
168230
|
var res = this.res;
|
|
168231
|
-
this.emit("headers", res, path19,
|
|
168231
|
+
this.emit("headers", res, path19, stat4);
|
|
168232
168232
|
if (this._acceptRanges && !res.getHeader("Accept-Ranges")) {
|
|
168233
168233
|
debug("accept ranges");
|
|
168234
168234
|
res.setHeader("Accept-Ranges", "bytes");
|
|
@@ -168242,12 +168242,12 @@ var require_send = __commonJS((exports, module) => {
|
|
|
168242
168242
|
res.setHeader("Cache-Control", cacheControl);
|
|
168243
168243
|
}
|
|
168244
168244
|
if (this._lastModified && !res.getHeader("Last-Modified")) {
|
|
168245
|
-
var modified =
|
|
168245
|
+
var modified = stat4.mtime.toUTCString();
|
|
168246
168246
|
debug("modified %s", modified);
|
|
168247
168247
|
res.setHeader("Last-Modified", modified);
|
|
168248
168248
|
}
|
|
168249
168249
|
if (this._etag && !res.getHeader("ETag")) {
|
|
168250
|
-
var val = etag(
|
|
168250
|
+
var val = etag(stat4);
|
|
168251
168251
|
debug("etag %s", val);
|
|
168252
168252
|
res.setHeader("ETag", val);
|
|
168253
168253
|
}
|
|
@@ -168381,8 +168381,8 @@ var require_response = __commonJS((exports, module) => {
|
|
|
168381
168381
|
var setCharset = require_utils10().setCharset;
|
|
168382
168382
|
var cookie = require_cookie();
|
|
168383
168383
|
var send = require_send();
|
|
168384
|
-
var
|
|
168385
|
-
var
|
|
168384
|
+
var extname3 = path18.extname;
|
|
168385
|
+
var resolve15 = path18.resolve;
|
|
168386
168386
|
var vary = require_vary();
|
|
168387
168387
|
var { Buffer: Buffer7 } = __require("node:buffer");
|
|
168388
168388
|
var res = Object.create(http.ServerResponse.prototype);
|
|
@@ -168591,7 +168591,7 @@ var require_response = __commonJS((exports, module) => {
|
|
|
168591
168591
|
}
|
|
168592
168592
|
opts = Object.create(opts);
|
|
168593
168593
|
opts.headers = headers;
|
|
168594
|
-
var fullPath = !opts.root ?
|
|
168594
|
+
var fullPath = !opts.root ? resolve15(path19) : path19;
|
|
168595
168595
|
return this.sendFile(fullPath, opts, done);
|
|
168596
168596
|
};
|
|
168597
168597
|
res.contentType = res.type = function contentType(type) {
|
|
@@ -168622,7 +168622,7 @@ var require_response = __commonJS((exports, module) => {
|
|
|
168622
168622
|
};
|
|
168623
168623
|
res.attachment = function attachment(filename) {
|
|
168624
168624
|
if (filename) {
|
|
168625
|
-
this.type(
|
|
168625
|
+
this.type(extname3(filename));
|
|
168626
168626
|
}
|
|
168627
168627
|
this.set("Content-Disposition", contentDisposition(filename));
|
|
168628
168628
|
return this;
|
|
@@ -168852,7 +168852,7 @@ var require_serve_static = __commonJS((exports, module) => {
|
|
|
168852
168852
|
var encodeUrl = require_encodeurl();
|
|
168853
168853
|
var escapeHtml = require_escape_html();
|
|
168854
168854
|
var parseUrl = require_parseurl();
|
|
168855
|
-
var
|
|
168855
|
+
var resolve15 = __require("path").resolve;
|
|
168856
168856
|
var send = require_send();
|
|
168857
168857
|
var url3 = __require("url");
|
|
168858
168858
|
module.exports = serveStatic;
|
|
@@ -168871,7 +168871,7 @@ var require_serve_static = __commonJS((exports, module) => {
|
|
|
168871
168871
|
throw new TypeError("option setHeaders must be function");
|
|
168872
168872
|
}
|
|
168873
168873
|
opts.maxage = opts.maxage || opts.maxAge || 0;
|
|
168874
|
-
opts.root =
|
|
168874
|
+
opts.root = resolve15(root2);
|
|
168875
168875
|
var onDirectory = redirect ? createRedirectDirectoryListener() : createNotFoundDirectoryListener();
|
|
168876
168876
|
return function serveStatic2(req, res, next) {
|
|
168877
168877
|
if (req.method !== "GET" && req.method !== "HEAD") {
|
|
@@ -169795,8 +169795,8 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
169795
169795
|
}
|
|
169796
169796
|
return parsed;
|
|
169797
169797
|
}
|
|
169798
|
-
function resolveUrl(
|
|
169799
|
-
return useNativeURL ? new URL2(
|
|
169798
|
+
function resolveUrl(relative5, base) {
|
|
169799
|
+
return useNativeURL ? new URL2(relative5, base) : parseUrl(url3.resolve(base, relative5));
|
|
169800
169800
|
}
|
|
169801
169801
|
function validateUrl(input) {
|
|
169802
169802
|
if (/^\[/.test(input.hostname) && !/^\[[:0-9a-f]+\]$/i.test(input.hostname)) {
|
|
@@ -172245,8 +172245,8 @@ var require_executor = __commonJS((exports, module) => {
|
|
|
172245
172245
|
}
|
|
172246
172246
|
resetBuffer() {
|
|
172247
172247
|
this.buffer = new Waterfall;
|
|
172248
|
-
this.buffer.chain(new Promise((
|
|
172249
|
-
this._triggerBuffer =
|
|
172248
|
+
this.buffer.chain(new Promise((resolve15) => {
|
|
172249
|
+
this._triggerBuffer = resolve15;
|
|
172250
172250
|
}));
|
|
172251
172251
|
if (this.ready)
|
|
172252
172252
|
this._triggerBuffer();
|
|
@@ -173266,7 +173266,7 @@ var require_storage = __commonJS((exports, module) => {
|
|
|
173266
173266
|
throw e8;
|
|
173267
173267
|
}
|
|
173268
173268
|
};
|
|
173269
|
-
var writeFileLinesAsync = (filename, lines, mode = DEFAULT_FILE_MODE) => new Promise((
|
|
173269
|
+
var writeFileLinesAsync = (filename, lines, mode = DEFAULT_FILE_MODE) => new Promise((resolve15, reject) => {
|
|
173270
173270
|
try {
|
|
173271
173271
|
const stream = writeFileStream(filename, { mode });
|
|
173272
173272
|
const readable2 = Readable6.from(lines);
|
|
@@ -173283,7 +173283,7 @@ var require_storage = __commonJS((exports, module) => {
|
|
|
173283
173283
|
if (err)
|
|
173284
173284
|
reject(err);
|
|
173285
173285
|
else
|
|
173286
|
-
|
|
173286
|
+
resolve15();
|
|
173287
173287
|
});
|
|
173288
173288
|
});
|
|
173289
173289
|
readable2.on("error", (err) => {
|
|
@@ -173454,7 +173454,7 @@ var require_persistence = __commonJS((exports, module) => {
|
|
|
173454
173454
|
return { data: tdata, indexes };
|
|
173455
173455
|
}
|
|
173456
173456
|
treatRawStreamAsync(rawStream) {
|
|
173457
|
-
return new Promise((
|
|
173457
|
+
return new Promise((resolve15, reject) => {
|
|
173458
173458
|
const dataById = {};
|
|
173459
173459
|
const indexes = {};
|
|
173460
173460
|
let corruptItems = 0;
|
|
@@ -173497,7 +173497,7 @@ var require_persistence = __commonJS((exports, module) => {
|
|
|
173497
173497
|
}
|
|
173498
173498
|
}
|
|
173499
173499
|
const data = Object.values(dataById);
|
|
173500
|
-
|
|
173500
|
+
resolve15({ data, indexes });
|
|
173501
173501
|
});
|
|
173502
173502
|
lineStream.on("error", function(err) {
|
|
173503
173503
|
reject(err, null);
|
|
@@ -183030,7 +183030,7 @@ var require_mime_types2 = __commonJS((exports) => {
|
|
|
183030
183030
|
* MIT Licensed
|
|
183031
183031
|
*/
|
|
183032
183032
|
var db2 = require_db2();
|
|
183033
|
-
var
|
|
183033
|
+
var extname3 = __require("path").extname;
|
|
183034
183034
|
var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/;
|
|
183035
183035
|
var TEXT_TYPE_REGEXP = /^text\//i;
|
|
183036
183036
|
exports.charset = charset;
|
|
@@ -183085,7 +183085,7 @@ var require_mime_types2 = __commonJS((exports) => {
|
|
|
183085
183085
|
if (!path18 || typeof path18 !== "string") {
|
|
183086
183086
|
return false;
|
|
183087
183087
|
}
|
|
183088
|
-
var extension2 =
|
|
183088
|
+
var extension2 = extname3("x." + path18).toLowerCase().substr(1);
|
|
183089
183089
|
if (!extension2) {
|
|
183090
183090
|
return false;
|
|
183091
183091
|
}
|
|
@@ -193077,7 +193077,7 @@ var require_mime_types3 = __commonJS((exports) => {
|
|
|
193077
193077
|
* MIT Licensed
|
|
193078
193078
|
*/
|
|
193079
193079
|
var db2 = require_db3();
|
|
193080
|
-
var
|
|
193080
|
+
var extname3 = __require("path").extname;
|
|
193081
193081
|
var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/;
|
|
193082
193082
|
var TEXT_TYPE_REGEXP = /^text\//i;
|
|
193083
193083
|
exports.charset = charset;
|
|
@@ -193132,7 +193132,7 @@ var require_mime_types3 = __commonJS((exports) => {
|
|
|
193132
193132
|
if (!path18 || typeof path18 !== "string") {
|
|
193133
193133
|
return false;
|
|
193134
193134
|
}
|
|
193135
|
-
var extension2 =
|
|
193135
|
+
var extension2 = extname3("x." + path18).toLowerCase().substr(1);
|
|
193136
193136
|
if (!extension2) {
|
|
193137
193137
|
return false;
|
|
193138
193138
|
}
|
|
@@ -199108,13 +199108,13 @@ var require_broadcast_operator = __commonJS((exports) => {
|
|
|
199108
199108
|
return true;
|
|
199109
199109
|
}
|
|
199110
199110
|
emitWithAck(ev2, ...args) {
|
|
199111
|
-
return new Promise((
|
|
199111
|
+
return new Promise((resolve15, reject) => {
|
|
199112
199112
|
args.push((err, responses) => {
|
|
199113
199113
|
if (err) {
|
|
199114
199114
|
err.responses = responses;
|
|
199115
199115
|
return reject(err);
|
|
199116
199116
|
} else {
|
|
199117
|
-
return
|
|
199117
|
+
return resolve15(responses);
|
|
199118
199118
|
}
|
|
199119
199119
|
});
|
|
199120
199120
|
this.emit(ev2, ...args);
|
|
@@ -199302,12 +199302,12 @@ var require_socket2 = __commonJS((exports) => {
|
|
|
199302
199302
|
}
|
|
199303
199303
|
emitWithAck(ev2, ...args) {
|
|
199304
199304
|
const withErr = this.flags.timeout !== undefined;
|
|
199305
|
-
return new Promise((
|
|
199305
|
+
return new Promise((resolve15, reject) => {
|
|
199306
199306
|
args.push((arg1, arg2) => {
|
|
199307
199307
|
if (withErr) {
|
|
199308
|
-
return arg1 ? reject(arg1) :
|
|
199308
|
+
return arg1 ? reject(arg1) : resolve15(arg2);
|
|
199309
199309
|
} else {
|
|
199310
|
-
return
|
|
199310
|
+
return resolve15(arg1);
|
|
199311
199311
|
}
|
|
199312
199312
|
});
|
|
199313
199313
|
this.emit(ev2, ...args);
|
|
@@ -199762,13 +199762,13 @@ var require_namespace = __commonJS((exports) => {
|
|
|
199762
199762
|
return true;
|
|
199763
199763
|
}
|
|
199764
199764
|
serverSideEmitWithAck(ev2, ...args) {
|
|
199765
|
-
return new Promise((
|
|
199765
|
+
return new Promise((resolve15, reject) => {
|
|
199766
199766
|
args.push((err, responses) => {
|
|
199767
199767
|
if (err) {
|
|
199768
199768
|
err.responses = responses;
|
|
199769
199769
|
return reject(err);
|
|
199770
199770
|
} else {
|
|
199771
|
-
return
|
|
199771
|
+
return resolve15(responses);
|
|
199772
199772
|
}
|
|
199773
199773
|
});
|
|
199774
199774
|
this.serverSideEmit(ev2, ...args);
|
|
@@ -203303,7 +203303,7 @@ var require_cluster_adapter = __commonJS((exports) => {
|
|
|
203303
203303
|
return localSockets;
|
|
203304
203304
|
}
|
|
203305
203305
|
const requestId = randomId();
|
|
203306
|
-
return new Promise((
|
|
203306
|
+
return new Promise((resolve15, reject) => {
|
|
203307
203307
|
const timeout3 = setTimeout(() => {
|
|
203308
203308
|
const storedRequest2 = this.requests.get(requestId);
|
|
203309
203309
|
if (storedRequest2) {
|
|
@@ -203313,7 +203313,7 @@ var require_cluster_adapter = __commonJS((exports) => {
|
|
|
203313
203313
|
}, opts.flags.timeout || DEFAULT_TIMEOUT);
|
|
203314
203314
|
const storedRequest = {
|
|
203315
203315
|
type: MessageType.FETCH_SOCKETS,
|
|
203316
|
-
resolve:
|
|
203316
|
+
resolve: resolve15,
|
|
203317
203317
|
timeout: timeout3,
|
|
203318
203318
|
current: 0,
|
|
203319
203319
|
expected: expectedResponseCount,
|
|
@@ -203523,7 +203523,7 @@ var require_cluster_adapter = __commonJS((exports) => {
|
|
|
203523
203523
|
return localSockets;
|
|
203524
203524
|
}
|
|
203525
203525
|
const requestId = randomId();
|
|
203526
|
-
return new Promise((
|
|
203526
|
+
return new Promise((resolve15, reject) => {
|
|
203527
203527
|
const timeout3 = setTimeout(() => {
|
|
203528
203528
|
const storedRequest2 = this.customRequests.get(requestId);
|
|
203529
203529
|
if (storedRequest2) {
|
|
@@ -203533,7 +203533,7 @@ var require_cluster_adapter = __commonJS((exports) => {
|
|
|
203533
203533
|
}, opts.flags.timeout || DEFAULT_TIMEOUT);
|
|
203534
203534
|
const storedRequest = {
|
|
203535
203535
|
type: MessageType.FETCH_SOCKETS,
|
|
203536
|
-
resolve:
|
|
203536
|
+
resolve: resolve15,
|
|
203537
203537
|
timeout: timeout3,
|
|
203538
203538
|
missingUids: new Set([...this.nodesMap.keys()]),
|
|
203539
203539
|
responses: localSockets
|
|
@@ -204262,13 +204262,13 @@ var require_dist4 = __commonJS((exports, module) => {
|
|
|
204262
204262
|
this.engine.close();
|
|
204263
204263
|
(0, uws_1.restoreAdapter)();
|
|
204264
204264
|
if (this.httpServer) {
|
|
204265
|
-
return new Promise((
|
|
204265
|
+
return new Promise((resolve15) => {
|
|
204266
204266
|
this.httpServer.close((err) => {
|
|
204267
204267
|
fn9 && fn9(err);
|
|
204268
204268
|
if (err) {
|
|
204269
204269
|
debug("server was not running");
|
|
204270
204270
|
}
|
|
204271
|
-
|
|
204271
|
+
resolve15();
|
|
204272
204272
|
});
|
|
204273
204273
|
});
|
|
204274
204274
|
} else {
|
|
@@ -213004,7 +213004,7 @@ var require_mime_types4 = __commonJS((exports) => {
|
|
|
213004
213004
|
* MIT Licensed
|
|
213005
213005
|
*/
|
|
213006
213006
|
var db2 = require_db4();
|
|
213007
|
-
var
|
|
213007
|
+
var extname3 = __require("path").extname;
|
|
213008
213008
|
var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/;
|
|
213009
213009
|
var TEXT_TYPE_REGEXP = /^text\//i;
|
|
213010
213010
|
exports.charset = charset;
|
|
@@ -213059,7 +213059,7 @@ var require_mime_types4 = __commonJS((exports) => {
|
|
|
213059
213059
|
if (!path18 || typeof path18 !== "string") {
|
|
213060
213060
|
return false;
|
|
213061
213061
|
}
|
|
213062
|
-
var extension2 =
|
|
213062
|
+
var extension2 = extname3("x." + path18).toLowerCase().substr(1);
|
|
213063
213063
|
if (!extension2) {
|
|
213064
213064
|
return false;
|
|
213065
213065
|
}
|
|
@@ -217391,8 +217391,8 @@ var require_mkdirp = __commonJS((exports, module) => {
|
|
|
217391
217391
|
});
|
|
217392
217392
|
break;
|
|
217393
217393
|
default:
|
|
217394
|
-
xfs.stat(p4, function(er22,
|
|
217395
|
-
if (er22 || !
|
|
217394
|
+
xfs.stat(p4, function(er22, stat4) {
|
|
217395
|
+
if (er22 || !stat4.isDirectory())
|
|
217396
217396
|
cb2(er10, made);
|
|
217397
217397
|
else
|
|
217398
217398
|
cb2(null, made);
|
|
@@ -217423,13 +217423,13 @@ var require_mkdirp = __commonJS((exports, module) => {
|
|
|
217423
217423
|
sync(p4, opts, made);
|
|
217424
217424
|
break;
|
|
217425
217425
|
default:
|
|
217426
|
-
var
|
|
217426
|
+
var stat4;
|
|
217427
217427
|
try {
|
|
217428
|
-
|
|
217428
|
+
stat4 = xfs.statSync(p4);
|
|
217429
217429
|
} catch (err1) {
|
|
217430
217430
|
throw err0;
|
|
217431
217431
|
}
|
|
217432
|
-
if (!
|
|
217432
|
+
if (!stat4.isDirectory())
|
|
217433
217433
|
throw err0;
|
|
217434
217434
|
break;
|
|
217435
217435
|
}
|
|
@@ -217632,7 +217632,7 @@ var require_buffer_list = __commonJS((exports, module) => {
|
|
|
217632
217632
|
}
|
|
217633
217633
|
}, {
|
|
217634
217634
|
key: "join",
|
|
217635
|
-
value: function
|
|
217635
|
+
value: function join33(s5) {
|
|
217636
217636
|
if (this.length === 0)
|
|
217637
217637
|
return "";
|
|
217638
217638
|
var p4 = this.head;
|
|
@@ -218930,14 +218930,14 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
218930
218930
|
};
|
|
218931
218931
|
}
|
|
218932
218932
|
function readAndResolve(iter) {
|
|
218933
|
-
var
|
|
218934
|
-
if (
|
|
218933
|
+
var resolve15 = iter[kLastResolve];
|
|
218934
|
+
if (resolve15 !== null) {
|
|
218935
218935
|
var data = iter[kStream].read();
|
|
218936
218936
|
if (data !== null) {
|
|
218937
218937
|
iter[kLastPromise] = null;
|
|
218938
218938
|
iter[kLastResolve] = null;
|
|
218939
218939
|
iter[kLastReject] = null;
|
|
218940
|
-
|
|
218940
|
+
resolve15(createIterResult(data, false));
|
|
218941
218941
|
}
|
|
218942
218942
|
}
|
|
218943
218943
|
}
|
|
@@ -218945,13 +218945,13 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
218945
218945
|
process.nextTick(readAndResolve, iter);
|
|
218946
218946
|
}
|
|
218947
218947
|
function wrapForNext(lastPromise, iter) {
|
|
218948
|
-
return function(
|
|
218948
|
+
return function(resolve15, reject) {
|
|
218949
218949
|
lastPromise.then(function() {
|
|
218950
218950
|
if (iter[kEnded]) {
|
|
218951
|
-
|
|
218951
|
+
resolve15(createIterResult(undefined, true));
|
|
218952
218952
|
return;
|
|
218953
218953
|
}
|
|
218954
|
-
iter[kHandlePromise](
|
|
218954
|
+
iter[kHandlePromise](resolve15, reject);
|
|
218955
218955
|
}, reject);
|
|
218956
218956
|
};
|
|
218957
218957
|
}
|
|
@@ -218970,12 +218970,12 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
218970
218970
|
return Promise.resolve(createIterResult(undefined, true));
|
|
218971
218971
|
}
|
|
218972
218972
|
if (this[kStream].destroyed) {
|
|
218973
|
-
return new Promise(function(
|
|
218973
|
+
return new Promise(function(resolve15, reject) {
|
|
218974
218974
|
process.nextTick(function() {
|
|
218975
218975
|
if (_this[kError]) {
|
|
218976
218976
|
reject(_this[kError]);
|
|
218977
218977
|
} else {
|
|
218978
|
-
|
|
218978
|
+
resolve15(createIterResult(undefined, true));
|
|
218979
218979
|
}
|
|
218980
218980
|
});
|
|
218981
218981
|
});
|
|
@@ -218998,13 +218998,13 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
218998
218998
|
return this;
|
|
218999
218999
|
}), _defineProperty(_Object$setPrototypeO, "return", function _return() {
|
|
219000
219000
|
var _this2 = this;
|
|
219001
|
-
return new Promise(function(
|
|
219001
|
+
return new Promise(function(resolve15, reject) {
|
|
219002
219002
|
_this2[kStream].destroy(null, function(err) {
|
|
219003
219003
|
if (err) {
|
|
219004
219004
|
reject(err);
|
|
219005
219005
|
return;
|
|
219006
219006
|
}
|
|
219007
|
-
|
|
219007
|
+
resolve15(createIterResult(undefined, true));
|
|
219008
219008
|
});
|
|
219009
219009
|
});
|
|
219010
219010
|
}), _Object$setPrototypeO), AsyncIteratorPrototype);
|
|
@@ -219026,15 +219026,15 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
219026
219026
|
value: stream._readableState.endEmitted,
|
|
219027
219027
|
writable: true
|
|
219028
219028
|
}), _defineProperty(_Object$create, kHandlePromise, {
|
|
219029
|
-
value: function value(
|
|
219029
|
+
value: function value(resolve15, reject) {
|
|
219030
219030
|
var data = iterator[kStream].read();
|
|
219031
219031
|
if (data) {
|
|
219032
219032
|
iterator[kLastPromise] = null;
|
|
219033
219033
|
iterator[kLastResolve] = null;
|
|
219034
219034
|
iterator[kLastReject] = null;
|
|
219035
|
-
|
|
219035
|
+
resolve15(createIterResult(data, false));
|
|
219036
219036
|
} else {
|
|
219037
|
-
iterator[kLastResolve] =
|
|
219037
|
+
iterator[kLastResolve] = resolve15;
|
|
219038
219038
|
iterator[kLastReject] = reject;
|
|
219039
219039
|
}
|
|
219040
219040
|
},
|
|
@@ -219053,12 +219053,12 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
219053
219053
|
iterator[kError] = err;
|
|
219054
219054
|
return;
|
|
219055
219055
|
}
|
|
219056
|
-
var
|
|
219057
|
-
if (
|
|
219056
|
+
var resolve15 = iterator[kLastResolve];
|
|
219057
|
+
if (resolve15 !== null) {
|
|
219058
219058
|
iterator[kLastPromise] = null;
|
|
219059
219059
|
iterator[kLastResolve] = null;
|
|
219060
219060
|
iterator[kLastReject] = null;
|
|
219061
|
-
|
|
219061
|
+
resolve15(createIterResult(undefined, true));
|
|
219062
219062
|
}
|
|
219063
219063
|
iterator[kEnded] = true;
|
|
219064
219064
|
});
|
|
@@ -219070,7 +219070,7 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
219070
219070
|
|
|
219071
219071
|
// ../../node_modules/readable-stream/lib/internal/streams/from.js
|
|
219072
219072
|
var require_from = __commonJS((exports, module) => {
|
|
219073
|
-
function asyncGeneratorStep(gen,
|
|
219073
|
+
function asyncGeneratorStep(gen, resolve15, reject, _next, _throw, key2, arg) {
|
|
219074
219074
|
try {
|
|
219075
219075
|
var info = gen[key2](arg);
|
|
219076
219076
|
var value = info.value;
|
|
@@ -219079,7 +219079,7 @@ var require_from = __commonJS((exports, module) => {
|
|
|
219079
219079
|
return;
|
|
219080
219080
|
}
|
|
219081
219081
|
if (info.done) {
|
|
219082
|
-
|
|
219082
|
+
resolve15(value);
|
|
219083
219083
|
} else {
|
|
219084
219084
|
Promise.resolve(value).then(_next, _throw);
|
|
219085
219085
|
}
|
|
@@ -219087,13 +219087,13 @@ var require_from = __commonJS((exports, module) => {
|
|
|
219087
219087
|
function _asyncToGenerator(fn9) {
|
|
219088
219088
|
return function() {
|
|
219089
219089
|
var self2 = this, args = arguments;
|
|
219090
|
-
return new Promise(function(
|
|
219090
|
+
return new Promise(function(resolve15, reject) {
|
|
219091
219091
|
var gen = fn9.apply(self2, args);
|
|
219092
219092
|
function _next(value) {
|
|
219093
|
-
asyncGeneratorStep(gen,
|
|
219093
|
+
asyncGeneratorStep(gen, resolve15, reject, _next, _throw, "next", value);
|
|
219094
219094
|
}
|
|
219095
219095
|
function _throw(err) {
|
|
219096
|
-
asyncGeneratorStep(gen,
|
|
219096
|
+
asyncGeneratorStep(gen, resolve15, reject, _next, _throw, "throw", err);
|
|
219097
219097
|
}
|
|
219098
219098
|
_next(undefined);
|
|
219099
219099
|
});
|
|
@@ -221220,7 +221220,7 @@ var require_dist5 = __commonJS((exports, module) => {
|
|
|
221220
221220
|
determineAgent: () => determineAgent
|
|
221221
221221
|
});
|
|
221222
221222
|
module.exports = __toCommonJS2(src_exports);
|
|
221223
|
-
var
|
|
221223
|
+
var import_promises26 = __require("node:fs/promises");
|
|
221224
221224
|
var import_node_fs24 = __require("node:fs");
|
|
221225
221225
|
var DEVIN_LOCAL_PATH = "/opt/.devin";
|
|
221226
221226
|
var CURSOR2 = "cursor";
|
|
@@ -221278,7 +221278,7 @@ var require_dist5 = __commonJS((exports, module) => {
|
|
|
221278
221278
|
return { isAgent: true, agent: { name: REPLIT } };
|
|
221279
221279
|
}
|
|
221280
221280
|
try {
|
|
221281
|
-
await (0,
|
|
221281
|
+
await (0, import_promises26.access)(DEVIN_LOCAL_PATH, import_node_fs24.constants.F_OK);
|
|
221282
221282
|
return { isAgent: true, agent: { name: DEVIN } };
|
|
221283
221283
|
} catch (error48) {}
|
|
221284
221284
|
return { isAgent: false, agent: undefined };
|
|
@@ -237840,7 +237840,7 @@ function normalizeBase44Env() {
|
|
|
237840
237840
|
loadProjectEnvFiles();
|
|
237841
237841
|
|
|
237842
237842
|
// src/cli/index.ts
|
|
237843
|
-
import { dirname as
|
|
237843
|
+
import { dirname as dirname26, join as join37 } from "node:path";
|
|
237844
237844
|
import { fileURLToPath as fileURLToPath6 } from "node:url";
|
|
237845
237845
|
|
|
237846
237846
|
// ../../node_modules/@clack/core/dist/index.mjs
|
|
@@ -239048,7 +239048,7 @@ var {
|
|
|
239048
239048
|
} = import__.default;
|
|
239049
239049
|
|
|
239050
239050
|
// src/cli/commands/agent-skills/pull.ts
|
|
239051
|
-
import { dirname as
|
|
239051
|
+
import { dirname as dirname11, join as join18 } from "node:path";
|
|
239052
239052
|
// ../../node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
239053
239053
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
239054
239054
|
var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
@@ -245663,18 +245663,26 @@ var PublishedUrlResponseSchema = exports_external.object({
|
|
|
245663
245663
|
});
|
|
245664
245664
|
var CreateDeploymentResponseSchema = exports_external.object({
|
|
245665
245665
|
deployment_id: exports_external.string(),
|
|
245666
|
-
asset_uploads: exports_external.
|
|
245667
|
-
|
|
245668
|
-
|
|
245669
|
-
|
|
245670
|
-
|
|
245671
|
-
|
|
245672
|
-
|
|
245673
|
-
|
|
245674
|
-
|
|
245666
|
+
asset_uploads: exports_external.discriminatedUnion("type", [
|
|
245667
|
+
exports_external.object({
|
|
245668
|
+
type: exports_external.literal("cf"),
|
|
245669
|
+
url: exports_external.string(),
|
|
245670
|
+
jwt: exports_external.string(),
|
|
245671
|
+
buckets: exports_external.array(exports_external.array(exports_external.string()))
|
|
245672
|
+
}),
|
|
245673
|
+
exports_external.object({
|
|
245674
|
+
type: exports_external.literal("s3"),
|
|
245675
|
+
uploads: exports_external.array(exports_external.object({
|
|
245676
|
+
path: exports_external.string(),
|
|
245677
|
+
content_type: exports_external.string(),
|
|
245678
|
+
content_length: exports_external.number(),
|
|
245679
|
+
url: exports_external.string()
|
|
245680
|
+
}))
|
|
245681
|
+
})
|
|
245682
|
+
]).nullable().optional()
|
|
245675
245683
|
}).transform((data) => ({
|
|
245676
245684
|
deploymentId: data.deployment_id,
|
|
245677
|
-
assetUploads: data.asset_uploads == null ? null : {
|
|
245685
|
+
assetUploads: data.asset_uploads == null ? null : data.asset_uploads.type === "cf" ? data.asset_uploads : {
|
|
245678
245686
|
type: "s3",
|
|
245679
245687
|
uploads: data.asset_uploads.uploads.map((upload) => ({
|
|
245680
245688
|
path: upload.path,
|
|
@@ -245684,6 +245692,9 @@ var CreateDeploymentResponseSchema = exports_external.object({
|
|
|
245684
245692
|
}))
|
|
245685
245693
|
}
|
|
245686
245694
|
}));
|
|
245695
|
+
var AssetUploadResponseSchema = exports_external.looseObject({
|
|
245696
|
+
result: exports_external.looseObject({ jwt: exports_external.string().nullable().optional() }).nullable().optional()
|
|
245697
|
+
});
|
|
245687
245698
|
var FinalizeDeploymentResponseSchema = exports_external.object({
|
|
245688
245699
|
deployment_id: exports_external.string()
|
|
245689
245700
|
}).transform((data) => ({
|
|
@@ -248047,7 +248058,7 @@ import { join as join12 } from "node:path";
|
|
|
248047
248058
|
// package.json
|
|
248048
248059
|
var package_default = {
|
|
248049
248060
|
name: "base44",
|
|
248050
|
-
version: "0.1.
|
|
248061
|
+
version: "0.1.9",
|
|
248051
248062
|
description: "Base44 CLI - Unified interface for managing Base44 applications",
|
|
248052
248063
|
type: "module",
|
|
248053
248064
|
bin: {
|
|
@@ -248272,7 +248283,7 @@ async function createProjectFilesForExistingProject(options) {
|
|
|
248272
248283
|
};
|
|
248273
248284
|
}
|
|
248274
248285
|
// src/core/project/deploy.ts
|
|
248275
|
-
import { resolve as
|
|
248286
|
+
import { resolve as resolve6 } from "node:path";
|
|
248276
248287
|
|
|
248277
248288
|
// src/core/site/api.ts
|
|
248278
248289
|
async function uploadSite(archivePath) {
|
|
@@ -248296,6 +248307,13 @@ async function uploadSite(archivePath) {
|
|
|
248296
248307
|
}
|
|
248297
248308
|
return result.data;
|
|
248298
248309
|
}
|
|
248310
|
+
var MODULE_CONTENT_TYPES = {
|
|
248311
|
+
esm: "application/javascript+module",
|
|
248312
|
+
sourcemap: "application/source-map",
|
|
248313
|
+
wasm: "application/wasm",
|
|
248314
|
+
text: "text/plain",
|
|
248315
|
+
data: "application/octet-stream"
|
|
248316
|
+
};
|
|
248299
248317
|
async function createDeployment(request) {
|
|
248300
248318
|
const appClient = getAppClient();
|
|
248301
248319
|
let response;
|
|
@@ -248313,6 +248331,17 @@ async function createDeployment(request) {
|
|
|
248313
248331
|
}
|
|
248314
248332
|
return result.data;
|
|
248315
248333
|
}
|
|
248334
|
+
async function finalizeDeployment(deploymentId, completionJwt, modules) {
|
|
248335
|
+
const formData = new FormData;
|
|
248336
|
+
formData.append("payload", JSON.stringify({ completion_jwt: completionJwt }));
|
|
248337
|
+
for (const module of modules) {
|
|
248338
|
+
const content = await readFile(module.absolutePath);
|
|
248339
|
+
formData.append(module.name, new File([new Uint8Array(content)], module.name, {
|
|
248340
|
+
type: MODULE_CONTENT_TYPES[module.type]
|
|
248341
|
+
}));
|
|
248342
|
+
}
|
|
248343
|
+
return await postFinalize(deploymentId, formData);
|
|
248344
|
+
}
|
|
248316
248345
|
async function finalizeStaticDeployment(deploymentId, indexHtml) {
|
|
248317
248346
|
const formData = new FormData;
|
|
248318
248347
|
formData.append("index.html", new File([indexHtml], "index.html", { type: "text/html" }));
|
|
@@ -248379,10 +248408,17 @@ async function createArchive(pathToArchive, targetArchivePath) {
|
|
|
248379
248408
|
cwd: pathToArchive
|
|
248380
248409
|
}, ["."]);
|
|
248381
248410
|
}
|
|
248411
|
+
// src/core/site/deploy-app.ts
|
|
248412
|
+
import { resolve as resolve4 } from "node:path";
|
|
248413
|
+
|
|
248414
|
+
// src/core/site/static-site.ts
|
|
248415
|
+
import { readFile as readFile4 } from "node:fs/promises";
|
|
248416
|
+
import { join as join16 } from "node:path";
|
|
248417
|
+
|
|
248382
248418
|
// src/core/site/manifest.ts
|
|
248383
248419
|
import { createHash } from "node:crypto";
|
|
248384
248420
|
import { readFile as readFile2, stat } from "node:fs/promises";
|
|
248385
|
-
import { basename as basename4, join as join15 } from "node:path";
|
|
248421
|
+
import { basename as basename4, extname, join as join15 } from "node:path";
|
|
248386
248422
|
var MAX_ASSET_SIZE_BYTES = 25 * 1024 * 1024;
|
|
248387
248423
|
var MAX_ASSET_COUNT = 1e5;
|
|
248388
248424
|
var ASSETS_IGNORE_FILE = ".assetsignore";
|
|
@@ -248391,6 +248427,39 @@ var ALWAYS_IGNORED = new Set([
|
|
|
248391
248427
|
"wrangler.json",
|
|
248392
248428
|
".dev.vars"
|
|
248393
248429
|
]);
|
|
248430
|
+
var MIME_TYPES = {
|
|
248431
|
+
".html": "text/html",
|
|
248432
|
+
".htm": "text/html",
|
|
248433
|
+
".css": "text/css",
|
|
248434
|
+
".js": "text/javascript",
|
|
248435
|
+
".mjs": "text/javascript",
|
|
248436
|
+
".json": "application/json",
|
|
248437
|
+
".map": "application/json",
|
|
248438
|
+
".txt": "text/plain",
|
|
248439
|
+
".xml": "application/xml",
|
|
248440
|
+
".svg": "image/svg+xml",
|
|
248441
|
+
".png": "image/png",
|
|
248442
|
+
".jpg": "image/jpeg",
|
|
248443
|
+
".jpeg": "image/jpeg",
|
|
248444
|
+
".gif": "image/gif",
|
|
248445
|
+
".webp": "image/webp",
|
|
248446
|
+
".avif": "image/avif",
|
|
248447
|
+
".ico": "image/x-icon",
|
|
248448
|
+
".woff": "font/woff",
|
|
248449
|
+
".woff2": "font/woff2",
|
|
248450
|
+
".ttf": "font/ttf",
|
|
248451
|
+
".otf": "font/otf",
|
|
248452
|
+
".eot": "application/vnd.ms-fontobject",
|
|
248453
|
+
".mp3": "audio/mpeg",
|
|
248454
|
+
".mp4": "video/mp4",
|
|
248455
|
+
".webm": "video/webm",
|
|
248456
|
+
".pdf": "application/pdf",
|
|
248457
|
+
".wasm": "application/wasm",
|
|
248458
|
+
".webmanifest": "application/manifest+json"
|
|
248459
|
+
};
|
|
248460
|
+
function getAssetContentType(filePath) {
|
|
248461
|
+
return MIME_TYPES[extname(filePath).toLowerCase()] ?? "application/octet-stream";
|
|
248462
|
+
}
|
|
248394
248463
|
function hashAsset(appId, content) {
|
|
248395
248464
|
return createHash("sha256").update(Buffer.from(appId, "utf8")).update(content).digest("hex").slice(0, 32);
|
|
248396
248465
|
}
|
|
@@ -248418,14 +248487,16 @@ async function buildAssetManifest(assetsDir, appId) {
|
|
|
248418
248487
|
const hash2 = hashAsset(appId, content);
|
|
248419
248488
|
manifest[`/${relativePath}`] = { hash: hash2, size };
|
|
248420
248489
|
if (!filesByHash.has(hash2)) {
|
|
248421
|
-
filesByHash.set(hash2, {
|
|
248490
|
+
filesByHash.set(hash2, {
|
|
248491
|
+
absolutePath,
|
|
248492
|
+
hash: hash2,
|
|
248493
|
+
size,
|
|
248494
|
+
contentType: getAssetContentType(absolutePath)
|
|
248495
|
+
});
|
|
248422
248496
|
}
|
|
248423
248497
|
}
|
|
248424
248498
|
return { manifest, filesByHash };
|
|
248425
248499
|
}
|
|
248426
|
-
// src/core/site/static-site.ts
|
|
248427
|
-
import { readFile as readFile4 } from "node:fs/promises";
|
|
248428
|
-
import { join as join16 } from "node:path";
|
|
248429
248500
|
|
|
248430
248501
|
// src/core/site/upload.ts
|
|
248431
248502
|
import { readFile as readFile3 } from "node:fs/promises";
|
|
@@ -248559,6 +248630,62 @@ var DEFAULT_UPLOAD_CONCURRENCY = 3;
|
|
|
248559
248630
|
var MAX_UPLOAD_CONCURRENCY = 50;
|
|
248560
248631
|
var MAX_UPLOAD_ATTEMPTS = 3;
|
|
248561
248632
|
var RETRY_BASE_DELAY_MS = 500;
|
|
248633
|
+
var UPLOAD_RETRY = {
|
|
248634
|
+
limit: MAX_UPLOAD_ATTEMPTS - 1,
|
|
248635
|
+
delay: (attempt) => RETRY_BASE_DELAY_MS * 2 ** (attempt - 1)
|
|
248636
|
+
};
|
|
248637
|
+
async function uploadAssetBuckets(target, filesByHash, options = {}) {
|
|
248638
|
+
const { concurrency = DEFAULT_UPLOAD_CONCURRENCY, onProgress } = options;
|
|
248639
|
+
const { buckets } = target;
|
|
248640
|
+
const totalFiles = buckets.reduce((sum, bucket) => sum + bucket.length, 0);
|
|
248641
|
+
let uploadedFiles = 0;
|
|
248642
|
+
let completionJwt = null;
|
|
248643
|
+
await pMap(buckets, async (bucket) => {
|
|
248644
|
+
const jwt3 = await uploadAssetBucket(target, bucket, filesByHash);
|
|
248645
|
+
if (jwt3) {
|
|
248646
|
+
completionJwt = jwt3;
|
|
248647
|
+
}
|
|
248648
|
+
uploadedFiles += bucket.length;
|
|
248649
|
+
onProgress?.({ uploadedFiles, totalFiles });
|
|
248650
|
+
}, { concurrency });
|
|
248651
|
+
if (!completionJwt) {
|
|
248652
|
+
throw new ApiError("Asset upload finished but the server did not return a completion token.");
|
|
248653
|
+
}
|
|
248654
|
+
return completionJwt;
|
|
248655
|
+
}
|
|
248656
|
+
async function uploadAssetBucket(target, bucket, filesByHash) {
|
|
248657
|
+
const formData = await buildBucketForm(bucket, filesByHash);
|
|
248658
|
+
let response;
|
|
248659
|
+
try {
|
|
248660
|
+
response = await distribution_default.post(target.url, {
|
|
248661
|
+
searchParams: { base64: "true" },
|
|
248662
|
+
headers: { Authorization: `Bearer ${target.jwt}` },
|
|
248663
|
+
body: formData,
|
|
248664
|
+
timeout: 120000,
|
|
248665
|
+
retry: { ...UPLOAD_RETRY, methods: ["post"] }
|
|
248666
|
+
});
|
|
248667
|
+
} catch (error48) {
|
|
248668
|
+
if (error48 instanceof HTTPError && (error48.response.status === 401 || error48.response.status === 403)) {
|
|
248669
|
+
throw new ApiError("This deploy's upload session has expired — rerun deploy. Already-uploaded assets are skipped on the next attempt.", { statusCode: error48.response.status, cause: error48 });
|
|
248670
|
+
}
|
|
248671
|
+
throw await ApiError.fromHttpError(error48, "uploading assets to Cloudflare");
|
|
248672
|
+
}
|
|
248673
|
+
const parsed = AssetUploadResponseSchema.safeParse(await response.json());
|
|
248674
|
+
const jwt3 = parsed.success ? parsed.data.result?.jwt : null;
|
|
248675
|
+
return jwt3 || null;
|
|
248676
|
+
}
|
|
248677
|
+
async function buildBucketForm(bucket, filesByHash) {
|
|
248678
|
+
const formData = new FormData;
|
|
248679
|
+
for (const hash2 of bucket) {
|
|
248680
|
+
const file2 = filesByHash.get(hash2);
|
|
248681
|
+
if (!file2) {
|
|
248682
|
+
throw new InternalError(`Server requested upload of unknown asset hash: ${hash2}`);
|
|
248683
|
+
}
|
|
248684
|
+
const content = await readFile3(file2.absolutePath);
|
|
248685
|
+
formData.append(hash2, new File([content.toString("base64")], hash2, { type: file2.contentType }));
|
|
248686
|
+
}
|
|
248687
|
+
return formData;
|
|
248688
|
+
}
|
|
248562
248689
|
async function uploadPresignedAssets(uploads, assets, options = {}) {
|
|
248563
248690
|
const { concurrency = DEFAULT_UPLOAD_CONCURRENCY, onProgress } = options;
|
|
248564
248691
|
let uploadedFiles = 0;
|
|
@@ -248580,10 +248707,7 @@ async function uploadPresignedAsset(upload, assets) {
|
|
|
248580
248707
|
body: new Uint8Array(content),
|
|
248581
248708
|
headers: { "Content-Type": upload.contentType },
|
|
248582
248709
|
timeout: 120000,
|
|
248583
|
-
retry:
|
|
248584
|
-
limit: MAX_UPLOAD_ATTEMPTS - 1,
|
|
248585
|
-
delay: (attempt) => RETRY_BASE_DELAY_MS * 2 ** (attempt - 1)
|
|
248586
|
-
}
|
|
248710
|
+
retry: UPLOAD_RETRY
|
|
248587
248711
|
});
|
|
248588
248712
|
} catch (error48) {
|
|
248589
248713
|
throw await ApiError.fromHttpError(error48, "uploading static assets");
|
|
@@ -248591,6 +248715,11 @@ async function uploadPresignedAsset(upload, assets) {
|
|
|
248591
248715
|
}
|
|
248592
248716
|
|
|
248593
248717
|
// src/core/site/static-site.ts
|
|
248718
|
+
var STATIC_DEPLOYMENTS_ENV = "BASE44_STATIC_DEPLOYMENTS";
|
|
248719
|
+
function staticDeploymentsEnabled(env2 = process.env) {
|
|
248720
|
+
const value = env2[STATIC_DEPLOYMENTS_ENV];
|
|
248721
|
+
return value === "1" || value === "true";
|
|
248722
|
+
}
|
|
248594
248723
|
async function deployStaticSite(options) {
|
|
248595
248724
|
const { outputDir, gitHash, concurrency, progress } = options;
|
|
248596
248725
|
const assets = await buildAssetManifest(outputDir, getAppContext().id);
|
|
@@ -248601,6 +248730,9 @@ async function deployStaticSite(options) {
|
|
|
248601
248730
|
git_hash: gitHash,
|
|
248602
248731
|
asset_manifest: assets.manifest
|
|
248603
248732
|
});
|
|
248733
|
+
if (created.assetUploads && created.assetUploads.type !== "s3") {
|
|
248734
|
+
throw new ApiError(`The server answered a static-site deploy with the "${created.assetUploads.type}" upload target.`);
|
|
248735
|
+
}
|
|
248604
248736
|
progress?.onAssets?.({
|
|
248605
248737
|
totalAssets: Object.keys(assets.manifest).length,
|
|
248606
248738
|
newAssets: created.assetUploads?.uploads.length ?? 0
|
|
@@ -248613,342 +248745,259 @@ async function deployStaticSite(options) {
|
|
|
248613
248745
|
}
|
|
248614
248746
|
const indexHtml = await readFile4(join16(outputDir, "index.html"));
|
|
248615
248747
|
const finalized = await finalizeStaticDeployment(created.deploymentId, new Uint8Array(indexHtml));
|
|
248616
|
-
return { deploymentId: finalized.deploymentId };
|
|
248617
|
-
}
|
|
248618
|
-
|
|
248619
|
-
|
|
248620
|
-
|
|
248621
|
-
|
|
248622
|
-
|
|
248623
|
-
|
|
248624
|
-
|
|
248625
|
-
|
|
248626
|
-
|
|
248627
|
-
|
|
248628
|
-
|
|
248629
|
-
|
|
248630
|
-
|
|
248631
|
-
|
|
248632
|
-
|
|
248633
|
-
|
|
248634
|
-
|
|
248635
|
-
|
|
248636
|
-
|
|
248637
|
-
|
|
248638
|
-
|
|
248639
|
-
|
|
248640
|
-
|
|
248641
|
-
|
|
248642
|
-
|
|
248643
|
-
|
|
248644
|
-
|
|
248645
|
-
|
|
248646
|
-
|
|
248647
|
-
|
|
248648
|
-
|
|
248649
|
-
|
|
248650
|
-
|
|
248651
|
-
|
|
248748
|
+
return { deploymentId: finalized.deploymentId, gitHash };
|
|
248749
|
+
}
|
|
248750
|
+
|
|
248751
|
+
// src/core/site/wrangler-config.ts
|
|
248752
|
+
import { dirname as dirname10, join as join17, resolve as resolve3 } from "node:path";
|
|
248753
|
+
var WRANGLER_REDIRECT_PATH = join17(".wrangler", "deploy", "config.json");
|
|
248754
|
+
var RedirectConfigSchema = exports_external.looseObject({
|
|
248755
|
+
configPath: exports_external.string().min(1)
|
|
248756
|
+
});
|
|
248757
|
+
var WranglerConfigSchema = exports_external.looseObject({
|
|
248758
|
+
main: exports_external.string().min(1, "wrangler config is missing a 'main' entry module"),
|
|
248759
|
+
no_bundle: exports_external.boolean().optional(),
|
|
248760
|
+
rules: exports_external.array(exports_external.looseObject({ type: exports_external.string(), globs: exports_external.array(exports_external.string()) })).optional(),
|
|
248761
|
+
assets: exports_external.looseObject({
|
|
248762
|
+
directory: exports_external.string().optional(),
|
|
248763
|
+
html_handling: exports_external.string().optional(),
|
|
248764
|
+
not_found_handling: exports_external.string().optional(),
|
|
248765
|
+
run_worker_first: exports_external.union([exports_external.boolean(), exports_external.array(exports_external.string())]).optional(),
|
|
248766
|
+
headers: exports_external.string().optional(),
|
|
248767
|
+
redirects: exports_external.string().optional()
|
|
248768
|
+
}).optional(),
|
|
248769
|
+
compatibility_date: exports_external.string().optional(),
|
|
248770
|
+
compatibility_flags: exports_external.array(exports_external.string()).optional(),
|
|
248771
|
+
vars: exports_external.record(exports_external.string(), exports_external.unknown()).optional(),
|
|
248772
|
+
upload_source_maps: exports_external.boolean().optional()
|
|
248773
|
+
});
|
|
248774
|
+
async function detectFullStackArtifact(projectRoot) {
|
|
248775
|
+
const redirectPath = join17(projectRoot, WRANGLER_REDIRECT_PATH);
|
|
248776
|
+
return await pathExists(redirectPath) ? redirectPath : null;
|
|
248777
|
+
}
|
|
248778
|
+
async function resolveWranglerConfig(projectRoot) {
|
|
248779
|
+
const redirectPath = await detectFullStackArtifact(projectRoot);
|
|
248780
|
+
if (!redirectPath) {
|
|
248781
|
+
throw new InvalidInputError("No full-stack build artifact found. Expected a .wrangler/deploy/config.json redirect file.", {
|
|
248782
|
+
hints: [{ message: "Run your framework's build command first" }]
|
|
248783
|
+
});
|
|
248652
248784
|
}
|
|
248653
|
-
await
|
|
248654
|
-
await
|
|
248655
|
-
|
|
248656
|
-
|
|
248657
|
-
|
|
248658
|
-
await agentSkillResource.push(agentSkills);
|
|
248659
|
-
await agentResource.push(agents);
|
|
248660
|
-
await authConfigResource.push(authConfig);
|
|
248661
|
-
const skipConnectorSync = connectors.length === 0 && hasWorkspaceApiKeyAuth();
|
|
248662
|
-
const connectorResults = skipConnectorSync ? [] : (await pushConnectors(connectors)).results;
|
|
248663
|
-
if (project.site?.outputDirectory) {
|
|
248664
|
-
const outputDir = resolve3(project.root, project.site.outputDirectory);
|
|
248665
|
-
const { appUrl } = await deploySite(outputDir);
|
|
248666
|
-
return { appUrl, connectorResults };
|
|
248785
|
+
const configPath = await resolveRedirectedConfigPath(redirectPath);
|
|
248786
|
+
const parsed = await readJsonFile(configPath);
|
|
248787
|
+
const result = WranglerConfigSchema.safeParse(parsed);
|
|
248788
|
+
if (!result.success) {
|
|
248789
|
+
throw new ConfigInvalidError(`Invalid wrangler config: ${exports_external.prettifyError(result.error)}`, configPath);
|
|
248667
248790
|
}
|
|
248668
|
-
|
|
248669
|
-
|
|
248670
|
-
|
|
248671
|
-
var retriedRequests = new WeakSet;
|
|
248672
|
-
async function captureRequestBody(request, options) {
|
|
248673
|
-
if (request.body == null) {
|
|
248674
|
-
return;
|
|
248791
|
+
const config9 = result.data;
|
|
248792
|
+
if (config9.no_bundle !== true) {
|
|
248793
|
+
throw new InvalidInputError("This framework's output requires bundling; not yet supported. Base44 full-stack deploys only support pre-bundled Workers output (no_bundle: true).");
|
|
248675
248794
|
}
|
|
248676
|
-
|
|
248677
|
-
|
|
248678
|
-
|
|
248679
|
-
|
|
248680
|
-
|
|
248795
|
+
const configDir = dirname10(configPath);
|
|
248796
|
+
const assetsDirectory = config9.assets?.directory ? resolve3(configDir, config9.assets.directory) : null;
|
|
248797
|
+
return {
|
|
248798
|
+
configPath,
|
|
248799
|
+
configDir,
|
|
248800
|
+
main: config9.main,
|
|
248801
|
+
assetsDirectory,
|
|
248802
|
+
assetsConfig: config9.assets ? toResolvedAssetsConfig(config9.assets) : null,
|
|
248803
|
+
compatibilityDate: config9.compatibility_date ?? null,
|
|
248804
|
+
compatibilityFlags: config9.compatibility_flags ?? [],
|
|
248805
|
+
vars: config9.vars ?? {},
|
|
248806
|
+
rules: (config9.rules ?? []).map((rule) => ({
|
|
248807
|
+
type: rule.type,
|
|
248808
|
+
globs: rule.globs
|
|
248809
|
+
})),
|
|
248810
|
+
uploadSourceMaps: config9.upload_source_maps ?? false
|
|
248811
|
+
};
|
|
248681
248812
|
}
|
|
248682
|
-
async function
|
|
248683
|
-
|
|
248684
|
-
|
|
248685
|
-
|
|
248686
|
-
|
|
248687
|
-
return;
|
|
248688
|
-
}
|
|
248689
|
-
if (retriedRequests.has(request)) {
|
|
248690
|
-
return;
|
|
248691
|
-
}
|
|
248692
|
-
const newAccessToken = await refreshAndSaveTokens();
|
|
248693
|
-
if (!newAccessToken) {
|
|
248694
|
-
return;
|
|
248813
|
+
async function resolveRedirectedConfigPath(redirectPath) {
|
|
248814
|
+
const parsed = await readJsonFile(redirectPath);
|
|
248815
|
+
const result = RedirectConfigSchema.safeParse(parsed);
|
|
248816
|
+
if (!result.success) {
|
|
248817
|
+
throw new ConfigInvalidError(`Invalid deploy redirect file: ${exports_external.prettifyError(result.error)}`, redirectPath);
|
|
248695
248818
|
}
|
|
248696
|
-
|
|
248697
|
-
|
|
248698
|
-
|
|
248699
|
-
|
|
248700
|
-
|
|
248701
|
-
Authorization: `Bearer ${newAccessToken}`
|
|
248702
|
-
}
|
|
248703
|
-
});
|
|
248704
|
-
}
|
|
248705
|
-
var base44Client = distribution_default.create({
|
|
248706
|
-
prefixUrl: getBase44ApiUrl(),
|
|
248707
|
-
headers: {
|
|
248708
|
-
"User-Agent": "Base44 CLI"
|
|
248709
|
-
},
|
|
248710
|
-
hooks: {
|
|
248711
|
-
beforeRequest: [
|
|
248712
|
-
(request) => {
|
|
248713
|
-
request.headers.set("X-Request-ID", randomUUID2());
|
|
248714
|
-
},
|
|
248715
|
-
captureRequestBody,
|
|
248716
|
-
async (request) => {
|
|
248717
|
-
const workspaceApiKey = getWorkspaceApiKeyFromEnv();
|
|
248718
|
-
if (workspaceApiKey && isWorkspaceApiKey(workspaceApiKey)) {
|
|
248719
|
-
request.headers.set("api_key", workspaceApiKey);
|
|
248720
|
-
return;
|
|
248721
|
-
}
|
|
248722
|
-
try {
|
|
248723
|
-
const auth = await readAuth();
|
|
248724
|
-
if (isTokenExpired(auth)) {
|
|
248725
|
-
const newAccessToken = await refreshAndSaveTokens();
|
|
248726
|
-
if (newAccessToken) {
|
|
248727
|
-
request.headers.set("Authorization", `Bearer ${newAccessToken}`);
|
|
248728
|
-
return;
|
|
248729
|
-
}
|
|
248730
|
-
}
|
|
248731
|
-
request.headers.set("Authorization", `Bearer ${auth.accessToken}`);
|
|
248732
|
-
} catch {}
|
|
248733
|
-
}
|
|
248734
|
-
],
|
|
248735
|
-
afterResponse: [handleUnauthorized]
|
|
248819
|
+
const configPath = resolve3(dirname10(redirectPath), result.data.configPath);
|
|
248820
|
+
if (!await pathExists(configPath)) {
|
|
248821
|
+
throw new ConfigInvalidError(`Wrangler config referenced by ${redirectPath} does not exist: ${configPath}`, redirectPath, {
|
|
248822
|
+
hints: [{ message: "Rebuild the project to regenerate the artifact" }]
|
|
248823
|
+
});
|
|
248736
248824
|
}
|
|
248737
|
-
|
|
248738
|
-
function getAppClient() {
|
|
248739
|
-
const { id } = getAppContext();
|
|
248740
|
-
return base44Client.extend({
|
|
248741
|
-
prefixUrl: new URL(`/api/apps/${id}/`, getBase44ApiUrl()).href
|
|
248742
|
-
});
|
|
248825
|
+
return configPath;
|
|
248743
248826
|
}
|
|
248744
|
-
function
|
|
248745
|
-
return
|
|
248746
|
-
|
|
248747
|
-
|
|
248827
|
+
function toResolvedAssetsConfig(assets) {
|
|
248828
|
+
return {
|
|
248829
|
+
htmlHandling: assets.html_handling,
|
|
248830
|
+
notFoundHandling: assets.not_found_handling,
|
|
248831
|
+
runWorkerFirst: assets.run_worker_first,
|
|
248832
|
+
headers: assets.headers,
|
|
248833
|
+
redirects: assets.redirects
|
|
248834
|
+
};
|
|
248748
248835
|
}
|
|
248749
|
-
|
|
248750
|
-
|
|
248751
|
-
|
|
248752
|
-
|
|
248753
|
-
|
|
248754
|
-
"User-Agent": "Base44 CLI"
|
|
248755
|
-
},
|
|
248756
|
-
hooks: {
|
|
248757
|
-
beforeRequest: [
|
|
248758
|
-
(request) => {
|
|
248759
|
-
request.headers.set("X-Request-ID", randomUUID3());
|
|
248760
|
-
}
|
|
248761
|
-
]
|
|
248762
|
-
}
|
|
248763
|
-
});
|
|
248764
|
-
// src/core/auth/api.ts
|
|
248765
|
-
async function generateDeviceCode() {
|
|
248766
|
-
const response = await oauthClient.post("oauth/device/code", {
|
|
248767
|
-
json: {
|
|
248768
|
-
client_id: AUTH_CLIENT_ID,
|
|
248769
|
-
scope: "apps:read apps:write sandbox:write"
|
|
248770
|
-
},
|
|
248771
|
-
throwHttpErrors: false
|
|
248772
|
-
});
|
|
248773
|
-
if (!response.ok) {
|
|
248774
|
-
throw new ApiError(`Failed to generate device code: ${response.status} ${response.statusText}`, { statusCode: response.status });
|
|
248775
|
-
}
|
|
248776
|
-
const result = DeviceCodeResponseSchema.safeParse(await response.json());
|
|
248777
|
-
if (!result.success) {
|
|
248778
|
-
throw new SchemaValidationError("Invalid device code response from server", result.error);
|
|
248836
|
+
|
|
248837
|
+
// src/core/site/deploy-app.ts
|
|
248838
|
+
async function planAppDeploy(target) {
|
|
248839
|
+
if (await detectFullStackArtifact(target.root)) {
|
|
248840
|
+
return { kind: "full-stack" };
|
|
248779
248841
|
}
|
|
248780
|
-
|
|
248842
|
+
const outputDirectory = target.site?.outputDirectory;
|
|
248843
|
+
if (!outputDirectory) {
|
|
248844
|
+
return { kind: "none" };
|
|
248845
|
+
}
|
|
248846
|
+
const outputDir = resolve4(target.root, outputDirectory);
|
|
248847
|
+
return staticDeploymentsEnabled() ? { kind: "static-deployment", outputDir } : { kind: "static", outputDir };
|
|
248848
|
+
}
|
|
248849
|
+
// src/core/site/modules.ts
|
|
248850
|
+
import { stat as stat2 } from "node:fs/promises";
|
|
248851
|
+
import { relative as relative3, resolve as resolve5, sep } from "node:path";
|
|
248852
|
+
var MAX_TOTAL_MODULE_BYTES = 40 * 1024 * 1024;
|
|
248853
|
+
var MODULE_IGNORE = ["wrangler.json", ".dev.vars"];
|
|
248854
|
+
var RULE_TYPE_TO_MODULE_TYPE = {
|
|
248855
|
+
ESModule: "esm",
|
|
248856
|
+
CompiledWasm: "wasm",
|
|
248857
|
+
Text: "text",
|
|
248858
|
+
Data: "data"
|
|
248859
|
+
};
|
|
248860
|
+
function toPosix(path11) {
|
|
248861
|
+
return path11.split(sep).join("/");
|
|
248781
248862
|
}
|
|
248782
|
-
async function
|
|
248783
|
-
const
|
|
248784
|
-
|
|
248785
|
-
|
|
248786
|
-
|
|
248787
|
-
const response = await oauthClient.post("oauth/token", {
|
|
248788
|
-
body: searchParams.toString(),
|
|
248789
|
-
headers: {
|
|
248790
|
-
"Content-Type": "application/x-www-form-urlencoded"
|
|
248791
|
-
},
|
|
248792
|
-
throwHttpErrors: false
|
|
248793
|
-
});
|
|
248794
|
-
const json2 = await response.json();
|
|
248795
|
-
if (!response.ok) {
|
|
248796
|
-
const errorResult = OAuthErrorSchema.safeParse(json2);
|
|
248797
|
-
if (!errorResult.success) {
|
|
248798
|
-
throw new SchemaValidationError("Token request failed", errorResult.error);
|
|
248799
|
-
}
|
|
248800
|
-
const { error: error48, error_description } = errorResult.data;
|
|
248801
|
-
if (error48 === "authorization_pending" || error48 === "slow_down") {
|
|
248802
|
-
return null;
|
|
248803
|
-
}
|
|
248804
|
-
throw new ApiError(error_description ?? `OAuth error: ${error48}`, {
|
|
248805
|
-
statusCode: response.status
|
|
248863
|
+
async function collectModules(config9) {
|
|
248864
|
+
const entryPath = resolve5(config9.configDir, config9.main);
|
|
248865
|
+
if (!await pathExists(entryPath)) {
|
|
248866
|
+
throw new InvalidInputError(`Worker entry module does not exist: ${entryPath} (from "main" in ${config9.configPath})`, {
|
|
248867
|
+
hints: [{ message: "Rebuild the project to regenerate the artifact" }]
|
|
248806
248868
|
});
|
|
248807
248869
|
}
|
|
248808
|
-
const
|
|
248809
|
-
|
|
248810
|
-
|
|
248811
|
-
|
|
248812
|
-
|
|
248813
|
-
|
|
248814
|
-
|
|
248815
|
-
|
|
248816
|
-
|
|
248817
|
-
|
|
248818
|
-
|
|
248819
|
-
|
|
248820
|
-
|
|
248821
|
-
|
|
248822
|
-
|
|
248823
|
-
|
|
248824
|
-
|
|
248825
|
-
|
|
248826
|
-
|
|
248827
|
-
|
|
248828
|
-
|
|
248829
|
-
|
|
248830
|
-
throw new ApiError(`Token refresh failed: ${response.statusText}`, {
|
|
248831
|
-
statusCode: response.status
|
|
248832
|
-
});
|
|
248833
|
-
}
|
|
248834
|
-
const { error: error48, error_description } = errorResult.data;
|
|
248835
|
-
throw new ApiError(error_description ?? `OAuth error: ${error48}`, {
|
|
248836
|
-
statusCode: response.status
|
|
248870
|
+
const modulesByName = new Map;
|
|
248871
|
+
const entryName = toPosix(relative3(config9.configDir, entryPath));
|
|
248872
|
+
modulesByName.set(entryName, {
|
|
248873
|
+
name: entryName,
|
|
248874
|
+
absolutePath: entryPath,
|
|
248875
|
+
size: 0,
|
|
248876
|
+
type: "esm"
|
|
248877
|
+
});
|
|
248878
|
+
const ignore = [...MODULE_IGNORE];
|
|
248879
|
+
if (config9.assetsDirectory?.startsWith(config9.configDir + sep)) {
|
|
248880
|
+
ignore.push(`${toPosix(relative3(config9.configDir, config9.assetsDirectory))}/**`);
|
|
248881
|
+
}
|
|
248882
|
+
for (const rule of config9.rules) {
|
|
248883
|
+
const type = RULE_TYPE_TO_MODULE_TYPE[rule.type];
|
|
248884
|
+
if (!type) {
|
|
248885
|
+
throw new InvalidInputError(`Unsupported module rule type "${rule.type}" in ${config9.configPath}. Supported: ${Object.keys(RULE_TYPE_TO_MODULE_TYPE).join(", ")}.`);
|
|
248886
|
+
}
|
|
248887
|
+
const matches = await globby(rule.globs, {
|
|
248888
|
+
cwd: config9.configDir,
|
|
248889
|
+
onlyFiles: true,
|
|
248890
|
+
dot: true,
|
|
248891
|
+
ignore
|
|
248837
248892
|
});
|
|
248893
|
+
for (const match of matches.sort()) {
|
|
248894
|
+
if (!modulesByName.has(match)) {
|
|
248895
|
+
modulesByName.set(match, {
|
|
248896
|
+
name: match,
|
|
248897
|
+
absolutePath: resolve5(config9.configDir, match),
|
|
248898
|
+
size: 0,
|
|
248899
|
+
type
|
|
248900
|
+
});
|
|
248901
|
+
}
|
|
248902
|
+
}
|
|
248838
248903
|
}
|
|
248839
|
-
|
|
248840
|
-
|
|
248841
|
-
|
|
248842
|
-
|
|
248843
|
-
|
|
248844
|
-
|
|
248845
|
-
async function getUserInfo(accessToken) {
|
|
248846
|
-
const response = await oauthClient.get("oauth/userinfo", {
|
|
248847
|
-
headers: { Authorization: `Bearer ${accessToken}` }
|
|
248848
|
-
});
|
|
248849
|
-
if (!response.ok) {
|
|
248850
|
-
throw new ApiError(`Failed to fetch user info: ${response.status}`, {
|
|
248851
|
-
statusCode: response.status
|
|
248904
|
+
if (config9.uploadSourceMaps) {
|
|
248905
|
+
const maps = await globby("**/*.map", {
|
|
248906
|
+
cwd: config9.configDir,
|
|
248907
|
+
onlyFiles: true,
|
|
248908
|
+
dot: true,
|
|
248909
|
+
ignore
|
|
248852
248910
|
});
|
|
248911
|
+
for (const map2 of maps.sort()) {
|
|
248912
|
+
addSourcemap(modulesByName, config9.configDir, map2);
|
|
248913
|
+
}
|
|
248914
|
+
} else {
|
|
248915
|
+
for (const name2 of [...modulesByName.keys()]) {
|
|
248916
|
+
const mapName = `${name2}.map`;
|
|
248917
|
+
if (await pathExists(resolve5(config9.configDir, mapName))) {
|
|
248918
|
+
addSourcemap(modulesByName, config9.configDir, mapName);
|
|
248919
|
+
}
|
|
248920
|
+
}
|
|
248853
248921
|
}
|
|
248854
|
-
const
|
|
248855
|
-
|
|
248856
|
-
|
|
248922
|
+
const modules = [...modulesByName.values()];
|
|
248923
|
+
let totalBytes = 0;
|
|
248924
|
+
for (const module of modules) {
|
|
248925
|
+
module.size = (await stat2(module.absolutePath)).size;
|
|
248926
|
+
totalBytes += module.size;
|
|
248857
248927
|
}
|
|
248858
|
-
|
|
248928
|
+
if (totalBytes > MAX_TOTAL_MODULE_BYTES) {
|
|
248929
|
+
throw new InvalidInputError(`Worker modules total ${totalBytes} bytes, which exceeds the 40 MB limit for Base44 full-stack deploys.`);
|
|
248930
|
+
}
|
|
248931
|
+
return modules;
|
|
248859
248932
|
}
|
|
248860
|
-
|
|
248861
|
-
|
|
248862
|
-
|
|
248863
|
-
|
|
248864
|
-
|
|
248865
|
-
|
|
248866
|
-
|
|
248933
|
+
function addSourcemap(modulesByName, configDir, name2) {
|
|
248934
|
+
if (modulesByName.has(name2))
|
|
248935
|
+
return;
|
|
248936
|
+
modulesByName.set(name2, {
|
|
248937
|
+
name: name2,
|
|
248938
|
+
absolutePath: resolve5(configDir, name2),
|
|
248939
|
+
size: 0,
|
|
248940
|
+
type: "sourcemap"
|
|
248867
248941
|
});
|
|
248868
|
-
log.info(`Verification code: ${theme.styles.bold(deviceCodeResponse.userCode)}` + `
|
|
248869
|
-
Please confirm this code at: ${deviceCodeResponse.verificationUri}`);
|
|
248870
|
-
return deviceCodeResponse;
|
|
248871
248942
|
}
|
|
248872
|
-
|
|
248873
|
-
|
|
248874
|
-
|
|
248875
|
-
|
|
248876
|
-
|
|
248877
|
-
|
|
248878
|
-
|
|
248879
|
-
tokenResponse = result;
|
|
248880
|
-
return true;
|
|
248881
|
-
}
|
|
248882
|
-
return false;
|
|
248883
|
-
}, {
|
|
248884
|
-
interval: interval * 1000,
|
|
248885
|
-
timeout: expiresIn * 1000
|
|
248886
|
-
});
|
|
248887
|
-
}, {
|
|
248888
|
-
successMessage: "Authentication completed!",
|
|
248889
|
-
errorMessage: "Authentication failed"
|
|
248890
|
-
});
|
|
248891
|
-
} catch (error48) {
|
|
248892
|
-
if (error48 instanceof Error && error48.message.includes("timed out")) {
|
|
248893
|
-
throw new AuthExpiredError("Authentication timed out. Please try again.");
|
|
248894
|
-
}
|
|
248895
|
-
throw error48;
|
|
248943
|
+
|
|
248944
|
+
// src/core/site/full-stack.ts
|
|
248945
|
+
async function deployFullStack(options) {
|
|
248946
|
+
const { projectRoot, gitHash, concurrency, progress } = options;
|
|
248947
|
+
const config9 = await resolveWranglerConfig(projectRoot);
|
|
248948
|
+
if (!config9.compatibilityFlags.includes("nodejs_compat")) {
|
|
248949
|
+
progress?.onWarning?.("The wrangler config has no 'nodejs_compat' compatibility flag; Node.js built-ins will be unavailable at runtime. Enable it in your framework's Cloudflare adapter settings if your server code needs Node APIs.");
|
|
248896
248950
|
}
|
|
248897
|
-
if (
|
|
248898
|
-
|
|
248951
|
+
if (config9.vars && Object.keys(config9.vars).length > 0) {
|
|
248952
|
+
progress?.onWarning?.("wrangler 'vars' are not supported and were ignored — a worker's environment comes from the app's secrets (base44 secrets set).");
|
|
248899
248953
|
}
|
|
248900
|
-
|
|
248901
|
-
}
|
|
248902
|
-
|
|
248903
|
-
|
|
248904
|
-
|
|
248905
|
-
|
|
248906
|
-
|
|
248907
|
-
|
|
248908
|
-
|
|
248909
|
-
|
|
248954
|
+
const modules = await collectModules(config9);
|
|
248955
|
+
let assets = { manifest: {}, filesByHash: new Map };
|
|
248956
|
+
if (config9.assetsDirectory && await pathExists(config9.assetsDirectory)) {
|
|
248957
|
+
assets = await buildAssetManifest(config9.assetsDirectory, getAppContext().id);
|
|
248958
|
+
}
|
|
248959
|
+
const created = await createDeployment({
|
|
248960
|
+
git_hash: gitHash,
|
|
248961
|
+
config: {
|
|
248962
|
+
main: config9.main,
|
|
248963
|
+
compatibility_date: config9.compatibilityDate,
|
|
248964
|
+
compatibility_flags: config9.compatibilityFlags,
|
|
248965
|
+
assets: buildAssetsConfig(config9.assetsConfig, progress)
|
|
248966
|
+
},
|
|
248967
|
+
asset_manifest: assets.manifest
|
|
248910
248968
|
});
|
|
248969
|
+
if (created.assetUploads && created.assetUploads.type !== "cf") {
|
|
248970
|
+
throw new ApiError(`The server answered a full-stack deploy with the "${created.assetUploads.type}" upload target.`);
|
|
248971
|
+
}
|
|
248972
|
+
const totalAssets = Object.keys(assets.manifest).length;
|
|
248973
|
+
const newAssets = created.assetUploads ? new Set(created.assetUploads.buckets.flat()).size : 0;
|
|
248974
|
+
progress?.onAssets?.({ totalAssets, newAssets });
|
|
248975
|
+
const completionJwt = created.assetUploads ? await uploadAssetBuckets(created.assetUploads, assets.filesByHash, {
|
|
248976
|
+
concurrency,
|
|
248977
|
+
onProgress: progress?.onAssetUpload
|
|
248978
|
+
}) : null;
|
|
248979
|
+
progress?.onWorker?.({ moduleCount: modules.length });
|
|
248980
|
+
const finalized = await finalizeDeployment(created.deploymentId, completionJwt, modules);
|
|
248981
|
+
return { deploymentId: finalized.deploymentId, gitHash };
|
|
248911
248982
|
}
|
|
248912
|
-
|
|
248913
|
-
|
|
248914
|
-
|
|
248915
|
-
|
|
248916
|
-
|
|
248917
|
-
const token = await waitForAuthentication(deviceCodeResponse.deviceCode, deviceCodeResponse.expiresIn, deviceCodeResponse.interval, runTask);
|
|
248918
|
-
const userInfo = await getUserInfo(token.accessToken);
|
|
248919
|
-
await saveAuthData(token, userInfo);
|
|
248920
|
-
return {
|
|
248921
|
-
outroMessage: `Successfully logged in as ${theme.styles.bold(userInfo.email)}`
|
|
248922
|
-
};
|
|
248923
|
-
}
|
|
248924
|
-
|
|
248925
|
-
// src/cli/utils/command/middleware.ts
|
|
248926
|
-
async function ensureAuth(ctx) {
|
|
248927
|
-
if (hasWorkspaceApiKeyAuth()) {
|
|
248928
|
-
ctx.errorReporter.setContext({
|
|
248929
|
-
user: { email: "workspace-api-key", name: "Workspace API key" }
|
|
248930
|
-
});
|
|
248931
|
-
return;
|
|
248983
|
+
function buildAssetsConfig(assetsConfig, progress) {
|
|
248984
|
+
if (!assetsConfig)
|
|
248985
|
+
return null;
|
|
248986
|
+
if (assetsConfig.headers || assetsConfig.redirects) {
|
|
248987
|
+
progress?.onWarning?.("_headers/_redirects files are not supported yet and were ignored for this deploy.");
|
|
248932
248988
|
}
|
|
248933
|
-
|
|
248934
|
-
|
|
248935
|
-
|
|
248936
|
-
|
|
248937
|
-
|
|
248989
|
+
let runWorkerFirst;
|
|
248990
|
+
if (Array.isArray(assetsConfig.runWorkerFirst)) {
|
|
248991
|
+
progress?.onWarning?.("'run_worker_first' route patterns are not supported yet and were ignored for this deploy.");
|
|
248992
|
+
} else {
|
|
248993
|
+
runWorkerFirst = assetsConfig.runWorkerFirst;
|
|
248938
248994
|
}
|
|
248939
|
-
|
|
248940
|
-
|
|
248941
|
-
|
|
248942
|
-
|
|
248943
|
-
|
|
248944
|
-
} catch {}
|
|
248945
|
-
}
|
|
248946
|
-
async function ensureAppContext(ctx, options = {}) {
|
|
248947
|
-
const appContext = await initAppContext(options);
|
|
248948
|
-
ctx.app = appContext;
|
|
248949
|
-
ctx.errorReporter.setContext({ appId: appContext.id });
|
|
248995
|
+
return {
|
|
248996
|
+
html_handling: assetsConfig.htmlHandling,
|
|
248997
|
+
not_found_handling: assetsConfig.notFoundHandling,
|
|
248998
|
+
run_worker_first: runWorkerFirst
|
|
248999
|
+
};
|
|
248950
249000
|
}
|
|
248951
|
-
|
|
248952
249001
|
// ../../node_modules/is-plain-obj/index.js
|
|
248953
249002
|
function isPlainObject2(value) {
|
|
248954
249003
|
if (typeof value !== "object" || value === null) {
|
|
@@ -249046,13 +249095,13 @@ var getJoinLength = (uint8Arrays) => {
|
|
|
249046
249095
|
var isTemplateString = (templates) => Array.isArray(templates) && Array.isArray(templates.raw);
|
|
249047
249096
|
var parseTemplates = (templates, expressions) => {
|
|
249048
249097
|
let tokens = [];
|
|
249049
|
-
for (const [index,
|
|
249098
|
+
for (const [index, template] of templates.entries()) {
|
|
249050
249099
|
tokens = parseTemplate({
|
|
249051
249100
|
templates,
|
|
249052
249101
|
expressions,
|
|
249053
249102
|
tokens,
|
|
249054
249103
|
index,
|
|
249055
|
-
template
|
|
249104
|
+
template
|
|
249056
249105
|
});
|
|
249057
249106
|
}
|
|
249058
249107
|
if (tokens.length === 0) {
|
|
@@ -249061,11 +249110,11 @@ var parseTemplates = (templates, expressions) => {
|
|
|
249061
249110
|
const [file2, ...commandArguments] = tokens;
|
|
249062
249111
|
return [file2, commandArguments, {}];
|
|
249063
249112
|
};
|
|
249064
|
-
var parseTemplate = ({ templates, expressions, tokens, index, template
|
|
249065
|
-
if (
|
|
249113
|
+
var parseTemplate = ({ templates, expressions, tokens, index, template }) => {
|
|
249114
|
+
if (template === undefined) {
|
|
249066
249115
|
throw new TypeError(`Invalid backslash sequence: ${templates.raw[index]}`);
|
|
249067
249116
|
}
|
|
249068
|
-
const { nextTokens, leadingWhitespaces, trailingWhitespaces } = splitByWhitespaces(
|
|
249117
|
+
const { nextTokens, leadingWhitespaces, trailingWhitespaces } = splitByWhitespaces(template, templates.raw[index]);
|
|
249069
249118
|
const newTokens = concatTokens(tokens, nextTokens, leadingWhitespaces);
|
|
249070
249119
|
if (index === expressions.length) {
|
|
249071
249120
|
return newTokens;
|
|
@@ -249074,18 +249123,18 @@ var parseTemplate = ({ templates, expressions, tokens, index, template: template
|
|
|
249074
249123
|
const expressionTokens = Array.isArray(expression) ? expression.map((expression2) => parseExpression(expression2)) : [parseExpression(expression)];
|
|
249075
249124
|
return concatTokens(newTokens, expressionTokens, trailingWhitespaces);
|
|
249076
249125
|
};
|
|
249077
|
-
var splitByWhitespaces = (
|
|
249126
|
+
var splitByWhitespaces = (template, rawTemplate) => {
|
|
249078
249127
|
if (rawTemplate.length === 0) {
|
|
249079
249128
|
return { nextTokens: [], leadingWhitespaces: false, trailingWhitespaces: false };
|
|
249080
249129
|
}
|
|
249081
249130
|
const nextTokens = [];
|
|
249082
249131
|
let templateStart = 0;
|
|
249083
249132
|
const leadingWhitespaces = DELIMITERS.has(rawTemplate[0]);
|
|
249084
|
-
for (let templateIndex = 0, rawIndex = 0;templateIndex <
|
|
249133
|
+
for (let templateIndex = 0, rawIndex = 0;templateIndex < template.length; templateIndex += 1, rawIndex += 1) {
|
|
249085
249134
|
const rawCharacter = rawTemplate[rawIndex];
|
|
249086
249135
|
if (DELIMITERS.has(rawCharacter)) {
|
|
249087
249136
|
if (templateStart !== templateIndex) {
|
|
249088
|
-
nextTokens.push(
|
|
249137
|
+
nextTokens.push(template.slice(templateStart, templateIndex));
|
|
249089
249138
|
}
|
|
249090
249139
|
templateStart = templateIndex + 1;
|
|
249091
249140
|
} else if (rawCharacter === "\\") {
|
|
@@ -249101,9 +249150,9 @@ var splitByWhitespaces = (template2, rawTemplate) => {
|
|
|
249101
249150
|
}
|
|
249102
249151
|
}
|
|
249103
249152
|
}
|
|
249104
|
-
const trailingWhitespaces = templateStart ===
|
|
249153
|
+
const trailingWhitespaces = templateStart === template.length;
|
|
249105
249154
|
if (!trailingWhitespaces) {
|
|
249106
|
-
nextTokens.push(
|
|
249155
|
+
nextTokens.push(template.slice(templateStart));
|
|
249107
249156
|
}
|
|
249108
249157
|
return { nextTokens, leadingWhitespaces, trailingWhitespaces };
|
|
249109
249158
|
};
|
|
@@ -250497,8 +250546,8 @@ var disconnect = (anyProcess) => {
|
|
|
250497
250546
|
// ../../node_modules/execa/lib/utils/deferred.js
|
|
250498
250547
|
var createDeferred = () => {
|
|
250499
250548
|
const methods = {};
|
|
250500
|
-
const promise2 = new Promise((
|
|
250501
|
-
Object.assign(methods, { resolve:
|
|
250549
|
+
const promise2 = new Promise((resolve6, reject) => {
|
|
250550
|
+
Object.assign(methods, { resolve: resolve6, reject });
|
|
250502
250551
|
});
|
|
250503
250552
|
return Object.assign(promise2, methods);
|
|
250504
250553
|
};
|
|
@@ -254862,11 +254911,11 @@ var addConcurrentStream = (concurrentStreams, stream, waitName) => {
|
|
|
254862
254911
|
const promises = weakMap.get(stream);
|
|
254863
254912
|
const promise2 = createDeferred();
|
|
254864
254913
|
promises.push(promise2);
|
|
254865
|
-
const
|
|
254866
|
-
return { resolve:
|
|
254914
|
+
const resolve6 = promise2.resolve.bind(promise2);
|
|
254915
|
+
return { resolve: resolve6, promises };
|
|
254867
254916
|
};
|
|
254868
|
-
var waitForConcurrentStreams = async ({ resolve:
|
|
254869
|
-
|
|
254917
|
+
var waitForConcurrentStreams = async ({ resolve: resolve6, promises }, subprocess) => {
|
|
254918
|
+
resolve6();
|
|
254870
254919
|
const [isSubprocessExit] = await Promise.race([
|
|
254871
254920
|
Promise.allSettled([true, subprocess]),
|
|
254872
254921
|
Promise.all([false, ...promises])
|
|
@@ -255445,6 +255494,370 @@ var {
|
|
|
255445
255494
|
getCancelSignal: getCancelSignal2
|
|
255446
255495
|
} = getIpcExport();
|
|
255447
255496
|
|
|
255497
|
+
// src/core/utils/git.ts
|
|
255498
|
+
var GIT_HASH_PATTERN = /^[a-fA-F0-9]{7,64}$/;
|
|
255499
|
+
function isGitCommitHash(value) {
|
|
255500
|
+
return GIT_HASH_PATTERN.test(value);
|
|
255501
|
+
}
|
|
255502
|
+
|
|
255503
|
+
// src/core/site/git-hash.ts
|
|
255504
|
+
async function resolveGitHash(projectRoot, explicit) {
|
|
255505
|
+
const hash2 = explicit ?? await gitHead(projectRoot);
|
|
255506
|
+
if (!hash2 || !isGitCommitHash(hash2)) {
|
|
255507
|
+
throw new InvalidInputError(explicit ? `'${explicit}' is not a git commit hash.` : "Deployments are addressed by the commit that produced the build, and no git commit was found.", {
|
|
255508
|
+
hints: [
|
|
255509
|
+
{
|
|
255510
|
+
message: "Run the deploy from a git checkout, or pass the commit explicitly with --git-hash."
|
|
255511
|
+
}
|
|
255512
|
+
]
|
|
255513
|
+
});
|
|
255514
|
+
}
|
|
255515
|
+
return hash2;
|
|
255516
|
+
}
|
|
255517
|
+
async function gitHead(projectRoot) {
|
|
255518
|
+
try {
|
|
255519
|
+
const { stdout } = await execa("git", ["rev-parse", "HEAD"], {
|
|
255520
|
+
cwd: projectRoot
|
|
255521
|
+
});
|
|
255522
|
+
return stdout.trim();
|
|
255523
|
+
} catch {
|
|
255524
|
+
return null;
|
|
255525
|
+
}
|
|
255526
|
+
}
|
|
255527
|
+
// src/core/project/deploy.ts
|
|
255528
|
+
function hasResourcesToDeploy(projectData) {
|
|
255529
|
+
const {
|
|
255530
|
+
project,
|
|
255531
|
+
entities,
|
|
255532
|
+
functions,
|
|
255533
|
+
agents,
|
|
255534
|
+
agentSkills,
|
|
255535
|
+
connectors,
|
|
255536
|
+
authConfig
|
|
255537
|
+
} = projectData;
|
|
255538
|
+
const hasSite = Boolean(project.site?.outputDirectory);
|
|
255539
|
+
const hasEntities = entities.length > 0;
|
|
255540
|
+
const hasFunctions = functions.length > 0;
|
|
255541
|
+
const hasAgents = agents.length > 0;
|
|
255542
|
+
const hasAgentSkills = agentSkills.length > 0;
|
|
255543
|
+
const hasConnectors = connectors.length > 0;
|
|
255544
|
+
const hasAuthConfig = authConfig.length > 0;
|
|
255545
|
+
const hasVisibility = Boolean(project.visibility);
|
|
255546
|
+
return hasEntities || hasFunctions || hasAgents || hasAgentSkills || hasConnectors || hasAuthConfig || hasVisibility || hasSite;
|
|
255547
|
+
}
|
|
255548
|
+
async function deployAll(projectData, options) {
|
|
255549
|
+
const {
|
|
255550
|
+
project,
|
|
255551
|
+
entities,
|
|
255552
|
+
functions,
|
|
255553
|
+
agents,
|
|
255554
|
+
agentSkills,
|
|
255555
|
+
connectors,
|
|
255556
|
+
authConfig
|
|
255557
|
+
} = projectData;
|
|
255558
|
+
await setAppVisibility(project.visibility);
|
|
255559
|
+
if (project.visibility) {
|
|
255560
|
+
options?.onVisibilitySet?.(project.visibility);
|
|
255561
|
+
}
|
|
255562
|
+
await entityResource.push(entities);
|
|
255563
|
+
await deployFunctionsSequentially(functions, {
|
|
255564
|
+
onStart: options?.onFunctionStart,
|
|
255565
|
+
onResult: options?.onFunctionResult
|
|
255566
|
+
});
|
|
255567
|
+
await agentSkillResource.push(agentSkills);
|
|
255568
|
+
await agentResource.push(agents);
|
|
255569
|
+
await authConfigResource.push(authConfig);
|
|
255570
|
+
const skipConnectorSync = connectors.length === 0 && hasWorkspaceApiKeyAuth();
|
|
255571
|
+
const connectorResults = skipConnectorSync ? [] : (await pushConnectors(connectors)).results;
|
|
255572
|
+
if (project.site?.outputDirectory) {
|
|
255573
|
+
const outputDir = resolve6(project.root, project.site.outputDirectory);
|
|
255574
|
+
const { appUrl } = await deploySite(outputDir);
|
|
255575
|
+
return { appUrl, connectorResults };
|
|
255576
|
+
}
|
|
255577
|
+
return { connectorResults };
|
|
255578
|
+
}
|
|
255579
|
+
// src/core/clients/base44-client.ts
|
|
255580
|
+
var retriedRequests = new WeakSet;
|
|
255581
|
+
async function captureRequestBody(request, options) {
|
|
255582
|
+
if (request.body == null) {
|
|
255583
|
+
return;
|
|
255584
|
+
}
|
|
255585
|
+
try {
|
|
255586
|
+
const cloned = request.clone();
|
|
255587
|
+
const text = await cloned.text();
|
|
255588
|
+
options.context.__requestBody = text;
|
|
255589
|
+
} catch {}
|
|
255590
|
+
}
|
|
255591
|
+
async function handleUnauthorized(request, _options, response) {
|
|
255592
|
+
if (response.status !== 401) {
|
|
255593
|
+
return;
|
|
255594
|
+
}
|
|
255595
|
+
if (hasWorkspaceApiKeyAuth()) {
|
|
255596
|
+
return;
|
|
255597
|
+
}
|
|
255598
|
+
if (retriedRequests.has(request)) {
|
|
255599
|
+
return;
|
|
255600
|
+
}
|
|
255601
|
+
const newAccessToken = await refreshAndSaveTokens();
|
|
255602
|
+
if (!newAccessToken) {
|
|
255603
|
+
return;
|
|
255604
|
+
}
|
|
255605
|
+
retriedRequests.add(request);
|
|
255606
|
+
const requestId = request.headers.get("X-Request-ID");
|
|
255607
|
+
return distribution_default(request.clone(), {
|
|
255608
|
+
headers: {
|
|
255609
|
+
...requestId && { "X-Request-ID": requestId },
|
|
255610
|
+
Authorization: `Bearer ${newAccessToken}`
|
|
255611
|
+
}
|
|
255612
|
+
});
|
|
255613
|
+
}
|
|
255614
|
+
var base44Client = distribution_default.create({
|
|
255615
|
+
prefixUrl: getBase44ApiUrl(),
|
|
255616
|
+
headers: {
|
|
255617
|
+
"User-Agent": "Base44 CLI"
|
|
255618
|
+
},
|
|
255619
|
+
hooks: {
|
|
255620
|
+
beforeRequest: [
|
|
255621
|
+
(request) => {
|
|
255622
|
+
request.headers.set("X-Request-ID", randomUUID2());
|
|
255623
|
+
},
|
|
255624
|
+
captureRequestBody,
|
|
255625
|
+
async (request) => {
|
|
255626
|
+
const workspaceApiKey = getWorkspaceApiKeyFromEnv();
|
|
255627
|
+
if (workspaceApiKey && isWorkspaceApiKey(workspaceApiKey)) {
|
|
255628
|
+
request.headers.set("api_key", workspaceApiKey);
|
|
255629
|
+
return;
|
|
255630
|
+
}
|
|
255631
|
+
try {
|
|
255632
|
+
const auth = await readAuth();
|
|
255633
|
+
if (isTokenExpired(auth)) {
|
|
255634
|
+
const newAccessToken = await refreshAndSaveTokens();
|
|
255635
|
+
if (newAccessToken) {
|
|
255636
|
+
request.headers.set("Authorization", `Bearer ${newAccessToken}`);
|
|
255637
|
+
return;
|
|
255638
|
+
}
|
|
255639
|
+
}
|
|
255640
|
+
request.headers.set("Authorization", `Bearer ${auth.accessToken}`);
|
|
255641
|
+
} catch {}
|
|
255642
|
+
}
|
|
255643
|
+
],
|
|
255644
|
+
afterResponse: [handleUnauthorized]
|
|
255645
|
+
}
|
|
255646
|
+
});
|
|
255647
|
+
function getAppClient() {
|
|
255648
|
+
const { id } = getAppContext();
|
|
255649
|
+
return base44Client.extend({
|
|
255650
|
+
prefixUrl: new URL(`/api/apps/${id}/`, getBase44ApiUrl()).href
|
|
255651
|
+
});
|
|
255652
|
+
}
|
|
255653
|
+
function getSandboxClient(appId) {
|
|
255654
|
+
return base44Client.extend({
|
|
255655
|
+
prefixUrl: new URL(`/api/apps/${appId}/sandbox-bridge/`, getBase44ApiUrl()).href
|
|
255656
|
+
});
|
|
255657
|
+
}
|
|
255658
|
+
// src/core/clients/oauth-client.ts
|
|
255659
|
+
import { randomUUID as randomUUID3 } from "node:crypto";
|
|
255660
|
+
var oauthClient = distribution_default.create({
|
|
255661
|
+
prefixUrl: getBase44ApiUrl(),
|
|
255662
|
+
headers: {
|
|
255663
|
+
"User-Agent": "Base44 CLI"
|
|
255664
|
+
},
|
|
255665
|
+
hooks: {
|
|
255666
|
+
beforeRequest: [
|
|
255667
|
+
(request) => {
|
|
255668
|
+
request.headers.set("X-Request-ID", randomUUID3());
|
|
255669
|
+
}
|
|
255670
|
+
]
|
|
255671
|
+
}
|
|
255672
|
+
});
|
|
255673
|
+
// src/core/auth/api.ts
|
|
255674
|
+
async function generateDeviceCode() {
|
|
255675
|
+
const response = await oauthClient.post("oauth/device/code", {
|
|
255676
|
+
json: {
|
|
255677
|
+
client_id: AUTH_CLIENT_ID,
|
|
255678
|
+
scope: "apps:read apps:write sandbox:write"
|
|
255679
|
+
},
|
|
255680
|
+
throwHttpErrors: false
|
|
255681
|
+
});
|
|
255682
|
+
if (!response.ok) {
|
|
255683
|
+
throw new ApiError(`Failed to generate device code: ${response.status} ${response.statusText}`, { statusCode: response.status });
|
|
255684
|
+
}
|
|
255685
|
+
const result = DeviceCodeResponseSchema.safeParse(await response.json());
|
|
255686
|
+
if (!result.success) {
|
|
255687
|
+
throw new SchemaValidationError("Invalid device code response from server", result.error);
|
|
255688
|
+
}
|
|
255689
|
+
return result.data;
|
|
255690
|
+
}
|
|
255691
|
+
async function getTokenFromDeviceCode(deviceCode) {
|
|
255692
|
+
const searchParams = new URLSearchParams;
|
|
255693
|
+
searchParams.set("grant_type", "urn:ietf:params:oauth:grant-type:device_code");
|
|
255694
|
+
searchParams.set("device_code", deviceCode);
|
|
255695
|
+
searchParams.set("client_id", AUTH_CLIENT_ID);
|
|
255696
|
+
const response = await oauthClient.post("oauth/token", {
|
|
255697
|
+
body: searchParams.toString(),
|
|
255698
|
+
headers: {
|
|
255699
|
+
"Content-Type": "application/x-www-form-urlencoded"
|
|
255700
|
+
},
|
|
255701
|
+
throwHttpErrors: false
|
|
255702
|
+
});
|
|
255703
|
+
const json2 = await response.json();
|
|
255704
|
+
if (!response.ok) {
|
|
255705
|
+
const errorResult = OAuthErrorSchema.safeParse(json2);
|
|
255706
|
+
if (!errorResult.success) {
|
|
255707
|
+
throw new SchemaValidationError("Token request failed", errorResult.error);
|
|
255708
|
+
}
|
|
255709
|
+
const { error: error48, error_description } = errorResult.data;
|
|
255710
|
+
if (error48 === "authorization_pending" || error48 === "slow_down") {
|
|
255711
|
+
return null;
|
|
255712
|
+
}
|
|
255713
|
+
throw new ApiError(error_description ?? `OAuth error: ${error48}`, {
|
|
255714
|
+
statusCode: response.status
|
|
255715
|
+
});
|
|
255716
|
+
}
|
|
255717
|
+
const result = TokenResponseSchema.safeParse(json2);
|
|
255718
|
+
if (!result.success) {
|
|
255719
|
+
throw new SchemaValidationError("Invalid token response from server", result.error);
|
|
255720
|
+
}
|
|
255721
|
+
return result.data;
|
|
255722
|
+
}
|
|
255723
|
+
async function renewAccessToken(refreshToken) {
|
|
255724
|
+
const searchParams = new URLSearchParams;
|
|
255725
|
+
searchParams.set("grant_type", "refresh_token");
|
|
255726
|
+
searchParams.set("refresh_token", refreshToken);
|
|
255727
|
+
searchParams.set("client_id", AUTH_CLIENT_ID);
|
|
255728
|
+
const response = await oauthClient.post("oauth/token", {
|
|
255729
|
+
body: searchParams.toString(),
|
|
255730
|
+
headers: {
|
|
255731
|
+
"Content-Type": "application/x-www-form-urlencoded"
|
|
255732
|
+
},
|
|
255733
|
+
throwHttpErrors: false
|
|
255734
|
+
});
|
|
255735
|
+
const json2 = await response.json();
|
|
255736
|
+
if (!response.ok) {
|
|
255737
|
+
const errorResult = OAuthErrorSchema.safeParse(json2);
|
|
255738
|
+
if (!errorResult.success) {
|
|
255739
|
+
throw new ApiError(`Token refresh failed: ${response.statusText}`, {
|
|
255740
|
+
statusCode: response.status
|
|
255741
|
+
});
|
|
255742
|
+
}
|
|
255743
|
+
const { error: error48, error_description } = errorResult.data;
|
|
255744
|
+
throw new ApiError(error_description ?? `OAuth error: ${error48}`, {
|
|
255745
|
+
statusCode: response.status
|
|
255746
|
+
});
|
|
255747
|
+
}
|
|
255748
|
+
const result = TokenResponseSchema.safeParse(json2);
|
|
255749
|
+
if (!result.success) {
|
|
255750
|
+
throw new SchemaValidationError("Invalid token response from server", result.error);
|
|
255751
|
+
}
|
|
255752
|
+
return result.data;
|
|
255753
|
+
}
|
|
255754
|
+
async function getUserInfo(accessToken) {
|
|
255755
|
+
const response = await oauthClient.get("oauth/userinfo", {
|
|
255756
|
+
headers: { Authorization: `Bearer ${accessToken}` }
|
|
255757
|
+
});
|
|
255758
|
+
if (!response.ok) {
|
|
255759
|
+
throw new ApiError(`Failed to fetch user info: ${response.status}`, {
|
|
255760
|
+
statusCode: response.status
|
|
255761
|
+
});
|
|
255762
|
+
}
|
|
255763
|
+
const result = UserInfoSchema.safeParse(await response.json());
|
|
255764
|
+
if (!result.success) {
|
|
255765
|
+
throw new SchemaValidationError("Invalid UserInfo response from server", result.error);
|
|
255766
|
+
}
|
|
255767
|
+
return result.data;
|
|
255768
|
+
}
|
|
255769
|
+
// src/cli/commands/auth/login-flow.ts
|
|
255770
|
+
async function generateAndDisplayDeviceCode(log, runTask) {
|
|
255771
|
+
const deviceCodeResponse = await runTask("Generating device code...", async () => {
|
|
255772
|
+
return await generateDeviceCode();
|
|
255773
|
+
}, {
|
|
255774
|
+
successMessage: "Device code generated",
|
|
255775
|
+
errorMessage: "Failed to generate device code"
|
|
255776
|
+
});
|
|
255777
|
+
log.info(`Verification code: ${theme.styles.bold(deviceCodeResponse.userCode)}` + `
|
|
255778
|
+
Please confirm this code at: ${deviceCodeResponse.verificationUri}`);
|
|
255779
|
+
return deviceCodeResponse;
|
|
255780
|
+
}
|
|
255781
|
+
async function waitForAuthentication(deviceCode, expiresIn, interval, runTask) {
|
|
255782
|
+
let tokenResponse;
|
|
255783
|
+
try {
|
|
255784
|
+
await runTask("Waiting for authentication...", async () => {
|
|
255785
|
+
await pWaitFor(async () => {
|
|
255786
|
+
const result = await getTokenFromDeviceCode(deviceCode);
|
|
255787
|
+
if (result !== null) {
|
|
255788
|
+
tokenResponse = result;
|
|
255789
|
+
return true;
|
|
255790
|
+
}
|
|
255791
|
+
return false;
|
|
255792
|
+
}, {
|
|
255793
|
+
interval: interval * 1000,
|
|
255794
|
+
timeout: expiresIn * 1000
|
|
255795
|
+
});
|
|
255796
|
+
}, {
|
|
255797
|
+
successMessage: "Authentication completed!",
|
|
255798
|
+
errorMessage: "Authentication failed"
|
|
255799
|
+
});
|
|
255800
|
+
} catch (error48) {
|
|
255801
|
+
if (error48 instanceof Error && error48.message.includes("timed out")) {
|
|
255802
|
+
throw new AuthExpiredError("Authentication timed out. Please try again.");
|
|
255803
|
+
}
|
|
255804
|
+
throw error48;
|
|
255805
|
+
}
|
|
255806
|
+
if (tokenResponse === undefined) {
|
|
255807
|
+
throw new InternalError("Failed to retrieve authentication token.");
|
|
255808
|
+
}
|
|
255809
|
+
return tokenResponse;
|
|
255810
|
+
}
|
|
255811
|
+
async function saveAuthData(response, userInfo) {
|
|
255812
|
+
const expiresAt = Date.now() + response.expiresIn * 1000;
|
|
255813
|
+
await writeAuth({
|
|
255814
|
+
accessToken: response.accessToken,
|
|
255815
|
+
refreshToken: response.refreshToken,
|
|
255816
|
+
expiresAt,
|
|
255817
|
+
email: userInfo.email,
|
|
255818
|
+
name: userInfo.name
|
|
255819
|
+
});
|
|
255820
|
+
}
|
|
255821
|
+
async function login({
|
|
255822
|
+
log,
|
|
255823
|
+
runTask
|
|
255824
|
+
}) {
|
|
255825
|
+
const deviceCodeResponse = await generateAndDisplayDeviceCode(log, runTask);
|
|
255826
|
+
const token = await waitForAuthentication(deviceCodeResponse.deviceCode, deviceCodeResponse.expiresIn, deviceCodeResponse.interval, runTask);
|
|
255827
|
+
const userInfo = await getUserInfo(token.accessToken);
|
|
255828
|
+
await saveAuthData(token, userInfo);
|
|
255829
|
+
return {
|
|
255830
|
+
outroMessage: `Successfully logged in as ${theme.styles.bold(userInfo.email)}`
|
|
255831
|
+
};
|
|
255832
|
+
}
|
|
255833
|
+
|
|
255834
|
+
// src/cli/utils/command/middleware.ts
|
|
255835
|
+
async function ensureAuth(ctx) {
|
|
255836
|
+
if (hasWorkspaceApiKeyAuth()) {
|
|
255837
|
+
ctx.errorReporter.setContext({
|
|
255838
|
+
user: { email: "workspace-api-key", name: "Workspace API key" }
|
|
255839
|
+
});
|
|
255840
|
+
return;
|
|
255841
|
+
}
|
|
255842
|
+
await seedAuthFromEnv();
|
|
255843
|
+
const loggedIn = await isLoggedIn();
|
|
255844
|
+
if (!loggedIn) {
|
|
255845
|
+
ctx.log.info("You need to login first to continue.");
|
|
255846
|
+
await login(ctx);
|
|
255847
|
+
}
|
|
255848
|
+
try {
|
|
255849
|
+
const userInfo = await readAuth();
|
|
255850
|
+
ctx.errorReporter.setContext({
|
|
255851
|
+
user: { email: userInfo.email, name: userInfo.name }
|
|
255852
|
+
});
|
|
255853
|
+
} catch {}
|
|
255854
|
+
}
|
|
255855
|
+
async function ensureAppContext(ctx, options = {}) {
|
|
255856
|
+
const appContext = await initAppContext(options);
|
|
255857
|
+
ctx.app = appContext;
|
|
255858
|
+
ctx.errorReporter.setContext({ appId: appContext.id });
|
|
255859
|
+
}
|
|
255860
|
+
|
|
255448
255861
|
// src/cli/utils/version-check.ts
|
|
255449
255862
|
async function checkForUpgrade() {
|
|
255450
255863
|
const testLatestVersion = getTestOverrides()?.latestVersion;
|
|
@@ -255857,11 +256270,6 @@ function verifyDenoInstalled(context) {
|
|
|
255857
256270
|
});
|
|
255858
256271
|
}
|
|
255859
256272
|
}
|
|
255860
|
-
// src/core/utils/git.ts
|
|
255861
|
-
var GIT_HASH_PATTERN = /^[a-fA-F0-9]{7,64}$/;
|
|
255862
|
-
function isGitCommitHash(value) {
|
|
255863
|
-
return GIT_HASH_PATTERN.test(value);
|
|
255864
|
-
}
|
|
255865
256273
|
// src/core/workspace/schema.ts
|
|
255866
256274
|
var WorkspaceSchema = exports_external.object({
|
|
255867
256275
|
id: exports_external.string(),
|
|
@@ -255936,7 +256344,7 @@ async function pullAction({
|
|
|
255936
256344
|
runTask: runTask2
|
|
255937
256345
|
}) {
|
|
255938
256346
|
const { project: project2 } = await readProjectConfig();
|
|
255939
|
-
const dir =
|
|
256347
|
+
const dir = join18(dirname11(project2.configPath), project2.agentSkillsDir);
|
|
255940
256348
|
const remote = await runTask2("Fetching agent skills from Base44", () => fetchAgentSkills(), {
|
|
255941
256349
|
successMessage: "Agent skills fetched successfully",
|
|
255942
256350
|
errorMessage: "Failed to fetch agent skills"
|
|
@@ -255992,14 +256400,14 @@ function getAgentSkillsCommand() {
|
|
|
255992
256400
|
}
|
|
255993
256401
|
|
|
255994
256402
|
// src/cli/commands/agents/pull.ts
|
|
255995
|
-
import { dirname as
|
|
256403
|
+
import { dirname as dirname12, join as join19 } from "node:path";
|
|
255996
256404
|
async function pullAgentsAction({
|
|
255997
256405
|
log,
|
|
255998
256406
|
runTask: runTask2
|
|
255999
256407
|
}) {
|
|
256000
256408
|
const { project: project2 } = await readProjectConfig();
|
|
256001
|
-
const configDir =
|
|
256002
|
-
const agentsDir =
|
|
256409
|
+
const configDir = dirname12(project2.configPath);
|
|
256410
|
+
const agentsDir = join19(configDir, project2.agentsDir);
|
|
256003
256411
|
const remoteAgents = await runTask2("Fetching agents from Base44", async () => {
|
|
256004
256412
|
return await fetchAgents();
|
|
256005
256413
|
}, {
|
|
@@ -256069,12 +256477,12 @@ function getAgentsCommand() {
|
|
|
256069
256477
|
}
|
|
256070
256478
|
|
|
256071
256479
|
// src/cli/commands/auth/password-login.ts
|
|
256072
|
-
import { dirname as
|
|
256480
|
+
import { dirname as dirname13, join as join20 } from "node:path";
|
|
256073
256481
|
async function passwordLoginAction({ log, runTask: runTask2 }, action) {
|
|
256074
256482
|
const shouldEnable = action === "enable";
|
|
256075
256483
|
const { project: project2 } = await readProjectConfig();
|
|
256076
|
-
const configDir =
|
|
256077
|
-
const authDir =
|
|
256484
|
+
const configDir = dirname13(project2.configPath);
|
|
256485
|
+
const authDir = join20(configDir, project2.authDir);
|
|
256078
256486
|
const updated = await runTask2("Updating local auth config", async () => {
|
|
256079
256487
|
const current = await readAuthConfig(authDir) ?? DEFAULT_AUTH_CONFIG;
|
|
256080
256488
|
const merged = { ...current, enableUsernamePassword: shouldEnable };
|
|
@@ -256094,14 +256502,14 @@ function getPasswordLoginCommand() {
|
|
|
256094
256502
|
}
|
|
256095
256503
|
|
|
256096
256504
|
// src/cli/commands/auth/pull.ts
|
|
256097
|
-
import { dirname as
|
|
256505
|
+
import { dirname as dirname14, join as join21 } from "node:path";
|
|
256098
256506
|
async function pullAuthAction({
|
|
256099
256507
|
log,
|
|
256100
256508
|
runTask: runTask2
|
|
256101
256509
|
}) {
|
|
256102
256510
|
const { project: project2 } = await readProjectConfig();
|
|
256103
|
-
const configDir =
|
|
256104
|
-
const authDir =
|
|
256511
|
+
const configDir = dirname14(project2.configPath);
|
|
256512
|
+
const authDir = join21(configDir, project2.authDir);
|
|
256105
256513
|
const remoteConfig = await runTask2("Fetching auth config from Base44", async () => {
|
|
256106
256514
|
return await pullAuthConfig();
|
|
256107
256515
|
}, {
|
|
@@ -256165,7 +256573,7 @@ function getAuthPushCommand() {
|
|
|
256165
256573
|
}
|
|
256166
256574
|
|
|
256167
256575
|
// src/cli/commands/auth/social-login.ts
|
|
256168
|
-
import { dirname as
|
|
256576
|
+
import { dirname as dirname15, join as join22, resolve as resolve7 } from "node:path";
|
|
256169
256577
|
var PROVIDER_LABELS = {
|
|
256170
256578
|
google: "Google",
|
|
256171
256579
|
microsoft: "Microsoft",
|
|
@@ -256205,7 +256613,7 @@ async function socialLoginAction({ log, isNonInteractive, runTask: runTask2 }, p
|
|
|
256205
256613
|
let clientSecret;
|
|
256206
256614
|
if (useCustomOAuth && oauth && oauthCli && hasSecretOptions(options)) {
|
|
256207
256615
|
if (options.envFile) {
|
|
256208
|
-
const secrets = await parseEnvFile(
|
|
256616
|
+
const secrets = await parseEnvFile(resolve7(options.envFile));
|
|
256209
256617
|
const value = secrets[oauthCli.envVar];
|
|
256210
256618
|
if (!value) {
|
|
256211
256619
|
throw new InvalidInputError(`Key "${oauthCli.envVar}" not found in ${options.envFile}.`);
|
|
@@ -256235,8 +256643,8 @@ async function socialLoginAction({ log, isNonInteractive, runTask: runTask2 }, p
|
|
|
256235
256643
|
}
|
|
256236
256644
|
}
|
|
256237
256645
|
const { project: project2 } = await readProjectConfig();
|
|
256238
|
-
const configDir =
|
|
256239
|
-
const authDir =
|
|
256646
|
+
const configDir = dirname15(project2.configPath);
|
|
256647
|
+
const authDir = join22(configDir, project2.authDir);
|
|
256240
256648
|
const { config: updated } = await runTask2("Updating local auth config", async () => updateSocialLoginConfig(authDir, provider, shouldEnable, useCustomOAuth && options.clientId ? { clientId: options.clientId } : undefined));
|
|
256241
256649
|
if (clientSecret) {
|
|
256242
256650
|
await runTask2("Saving client secret", async () => pushCustomOAuthSecret(provider, clientSecret));
|
|
@@ -256261,7 +256669,7 @@ function getSocialLoginCommand() {
|
|
|
256261
256669
|
}
|
|
256262
256670
|
|
|
256263
256671
|
// src/cli/commands/auth/sso.ts
|
|
256264
|
-
import { dirname as
|
|
256672
|
+
import { dirname as dirname16, join as join23, resolve as resolve8 } from "node:path";
|
|
256265
256673
|
var SSOConfigFileSchema = exports_external.object({
|
|
256266
256674
|
provider: exports_external.enum(Object.values(KNOWN_SSO_PROVIDERS)),
|
|
256267
256675
|
clientId: exports_external.string(),
|
|
@@ -256277,7 +256685,7 @@ var SSOConfigFileSchema = exports_external.object({
|
|
|
256277
256685
|
ssoName: exports_external.string().optional()
|
|
256278
256686
|
});
|
|
256279
256687
|
async function loadSSOConfigFile(filePath) {
|
|
256280
|
-
const resolved =
|
|
256688
|
+
const resolved = resolve8(filePath);
|
|
256281
256689
|
const raw2 = await readJsonFile(resolved);
|
|
256282
256690
|
const result = SSOConfigFileSchema.safeParse(raw2);
|
|
256283
256691
|
if (!result.success) {
|
|
@@ -256365,7 +256773,7 @@ async function ssoEnableAction({ isNonInteractive, runTask: runTask2 }, options)
|
|
|
256365
256773
|
}
|
|
256366
256774
|
let clientSecret;
|
|
256367
256775
|
if (merged.envFile && !merged.clientSecret) {
|
|
256368
|
-
const secrets2 = await parseEnvFile(
|
|
256776
|
+
const secrets2 = await parseEnvFile(resolve8(merged.envFile));
|
|
256369
256777
|
const value = secrets2.sso_client_secret;
|
|
256370
256778
|
if (!value) {
|
|
256371
256779
|
throw new InvalidInputError(`Key "sso_client_secret" not found in ${merged.envFile}.`);
|
|
@@ -256424,8 +256832,8 @@ async function ssoEnableAction({ isNonInteractive, runTask: runTask2 }, options)
|
|
|
256424
256832
|
throw error48;
|
|
256425
256833
|
}
|
|
256426
256834
|
const { project: project2 } = await readProjectConfig();
|
|
256427
|
-
const configDir =
|
|
256428
|
-
const authDir =
|
|
256835
|
+
const configDir = dirname16(project2.configPath);
|
|
256836
|
+
const authDir = join23(configDir, project2.authDir);
|
|
256429
256837
|
await runTask2("Updating local auth config", async () => updateSSOConfig(authDir, provider, true));
|
|
256430
256838
|
await runTask2("Saving SSO credentials", async () => pushSSOSecrets(secrets));
|
|
256431
256839
|
return {
|
|
@@ -256440,8 +256848,8 @@ async function ssoDisableAction({ log, runTask: runTask2 }, options) {
|
|
|
256440
256848
|
throw new InvalidInputError("Configuration options cannot be used with disable. To disable SSO: base44 auth sso disable");
|
|
256441
256849
|
}
|
|
256442
256850
|
const { project: project2 } = await readProjectConfig();
|
|
256443
|
-
const configDir =
|
|
256444
|
-
const authDir =
|
|
256851
|
+
const configDir = dirname16(project2.configPath);
|
|
256852
|
+
const authDir = join23(configDir, project2.authDir);
|
|
256445
256853
|
const updated = await runTask2("Updating local auth config", async () => updateSSOConfig(authDir, null, false));
|
|
256446
256854
|
await runTask2("Removing SSO credentials", async () => deleteSSOSecrets());
|
|
256447
256855
|
if (!hasAnyLoginMethod(updated)) {
|
|
@@ -257003,19 +257411,19 @@ var baseOpen = async (options) => {
|
|
|
257003
257411
|
}
|
|
257004
257412
|
const subprocess = childProcess3.spawn(command2, cliArguments, childProcessOptions);
|
|
257005
257413
|
if (options.wait) {
|
|
257006
|
-
return new Promise((
|
|
257414
|
+
return new Promise((resolve9, reject) => {
|
|
257007
257415
|
subprocess.once("error", reject);
|
|
257008
257416
|
subprocess.once("close", (exitCode) => {
|
|
257009
257417
|
if (!options.allowNonzeroExitCode && exitCode !== 0) {
|
|
257010
257418
|
reject(new Error(`Exited with code ${exitCode}`));
|
|
257011
257419
|
return;
|
|
257012
257420
|
}
|
|
257013
|
-
|
|
257421
|
+
resolve9(subprocess);
|
|
257014
257422
|
});
|
|
257015
257423
|
});
|
|
257016
257424
|
}
|
|
257017
257425
|
if (isFallbackAttempt) {
|
|
257018
|
-
return new Promise((
|
|
257426
|
+
return new Promise((resolve9, reject) => {
|
|
257019
257427
|
subprocess.once("error", reject);
|
|
257020
257428
|
subprocess.once("spawn", () => {
|
|
257021
257429
|
subprocess.once("close", (exitCode) => {
|
|
@@ -257025,17 +257433,17 @@ var baseOpen = async (options) => {
|
|
|
257025
257433
|
return;
|
|
257026
257434
|
}
|
|
257027
257435
|
subprocess.unref();
|
|
257028
|
-
|
|
257436
|
+
resolve9(subprocess);
|
|
257029
257437
|
});
|
|
257030
257438
|
});
|
|
257031
257439
|
});
|
|
257032
257440
|
}
|
|
257033
257441
|
subprocess.unref();
|
|
257034
|
-
return new Promise((
|
|
257442
|
+
return new Promise((resolve9, reject) => {
|
|
257035
257443
|
subprocess.once("error", reject);
|
|
257036
257444
|
subprocess.once("spawn", () => {
|
|
257037
257445
|
subprocess.off("error", reject);
|
|
257038
|
-
|
|
257446
|
+
resolve9(subprocess);
|
|
257039
257447
|
});
|
|
257040
257448
|
});
|
|
257041
257449
|
};
|
|
@@ -257298,13 +257706,13 @@ function getConnectorsListAvailableCommand() {
|
|
|
257298
257706
|
}
|
|
257299
257707
|
|
|
257300
257708
|
// src/cli/commands/connectors/pull.ts
|
|
257301
|
-
import { dirname as
|
|
257709
|
+
import { dirname as dirname17, join as join24, resolve as resolve9 } from "node:path";
|
|
257302
257710
|
async function resolveConnectorsDir(options) {
|
|
257303
257711
|
if (!getAppContext().projectRoot) {
|
|
257304
|
-
return
|
|
257712
|
+
return resolve9(options.dir ?? "connectors");
|
|
257305
257713
|
}
|
|
257306
257714
|
const { project: project2 } = await readProjectConfig();
|
|
257307
|
-
return
|
|
257715
|
+
return join24(dirname17(project2.configPath), project2.connectorsDir);
|
|
257308
257716
|
}
|
|
257309
257717
|
async function pullConnectorsAction({ log, runTask: runTask2, jsonMode }, options) {
|
|
257310
257718
|
const connectorsDir = await resolveConnectorsDir(options);
|
|
@@ -257345,10 +257753,10 @@ function getConnectorsPullCommand() {
|
|
|
257345
257753
|
}
|
|
257346
257754
|
|
|
257347
257755
|
// src/cli/commands/connectors/push.ts
|
|
257348
|
-
import { resolve as
|
|
257756
|
+
import { resolve as resolve10 } from "node:path";
|
|
257349
257757
|
async function readConnectorsToPush(options) {
|
|
257350
257758
|
if (!getAppContext().projectRoot) {
|
|
257351
|
-
return readAllConnectors(
|
|
257759
|
+
return readAllConnectors(resolve10(options.dir ?? "connectors"));
|
|
257352
257760
|
}
|
|
257353
257761
|
const { connectors } = await readProjectConfig();
|
|
257354
257762
|
return connectors;
|
|
@@ -257712,11 +258120,11 @@ function getListCommand() {
|
|
|
257712
258120
|
}
|
|
257713
258121
|
|
|
257714
258122
|
// src/cli/commands/functions/pull.ts
|
|
257715
|
-
import { dirname as
|
|
258123
|
+
import { dirname as dirname18, join as join25 } from "node:path";
|
|
257716
258124
|
async function pullFunctionsAction({ log, runTask: runTask2 }, name2) {
|
|
257717
258125
|
const { project: project2, functions } = await readProjectConfig();
|
|
257718
|
-
const configDir =
|
|
257719
|
-
const functionsDir =
|
|
258126
|
+
const configDir = dirname18(project2.configPath);
|
|
258127
|
+
const functionsDir = join25(configDir, project2.functionsDir);
|
|
257720
258128
|
const pluginFunctionNames = new Set(functions.filter((fn) => fn.source.type === "plugin").map((fn) => fn.name));
|
|
257721
258129
|
const remoteFunctions = await runTask2("Fetching functions from Base44", async () => {
|
|
257722
258130
|
const { functions: functions2 } = await listDeployedFunctions();
|
|
@@ -257849,11 +258257,11 @@ function getBuildCommand() {
|
|
|
257849
258257
|
}
|
|
257850
258258
|
|
|
257851
258259
|
// src/cli/commands/project/create.ts
|
|
257852
|
-
import { basename as basename5, resolve as
|
|
258260
|
+
import { basename as basename5, resolve as resolve11 } from "node:path";
|
|
257853
258261
|
var import_kebabCase = __toESM(require_kebabCase(), 1);
|
|
257854
258262
|
|
|
257855
258263
|
// src/cli/commands/project/scaffold-shared.ts
|
|
257856
|
-
import { join as
|
|
258264
|
+
import { join as join26 } from "node:path";
|
|
257857
258265
|
var DEFAULT_TEMPLATE_ID = "backend-only";
|
|
257858
258266
|
async function getTemplateById(templateId) {
|
|
257859
258267
|
const templates = await listTemplates();
|
|
@@ -257916,7 +258324,7 @@ async function completeProjectSetup({
|
|
|
257916
258324
|
env: { VITE_BASE44_APP_ID: projectId }
|
|
257917
258325
|
})`${buildCommand}`;
|
|
257918
258326
|
updateMessage("Deploying site...");
|
|
257919
|
-
return await deploySite(
|
|
258327
|
+
return await deploySite(join26(resolvedPath, outputDirectory));
|
|
257920
258328
|
}, {
|
|
257921
258329
|
successMessage: theme.colors.base44Orange("Site deployed successfully"),
|
|
257922
258330
|
errorMessage: "Failed to deploy site"
|
|
@@ -258045,7 +258453,7 @@ async function createInteractive(options, ctx) {
|
|
|
258045
258453
|
}, ctx);
|
|
258046
258454
|
}
|
|
258047
258455
|
async function createNonInteractive(options, ctx) {
|
|
258048
|
-
ctx.log.info(`Creating a new project at ${
|
|
258456
|
+
ctx.log.info(`Creating a new project at ${resolve11(options.path)}`);
|
|
258049
258457
|
const template2 = await getTemplateById(options.template ?? DEFAULT_TEMPLATE_ID);
|
|
258050
258458
|
return await executeCreate({
|
|
258051
258459
|
template: template2,
|
|
@@ -258069,7 +258477,7 @@ async function executeCreate({
|
|
|
258069
258477
|
}, ctx) {
|
|
258070
258478
|
const { log, runTask: runTask2 } = ctx;
|
|
258071
258479
|
const name2 = rawName.trim();
|
|
258072
|
-
const resolvedPath =
|
|
258480
|
+
const resolvedPath = resolve11(projectPath);
|
|
258073
258481
|
const organizationId = await resolveWorkspaceId(ctx, flagWorkspaceId, isInteractive);
|
|
258074
258482
|
const { projectId } = await runTask2("Setting up your project...", async () => {
|
|
258075
258483
|
return await createProjectFiles({
|
|
@@ -258466,7 +258874,7 @@ async function followLogs(functionNames, options, availableFunctionNames, jsonMo
|
|
|
258466
258874
|
for (const entry of fresh)
|
|
258467
258875
|
writeFollowLine(entry, jsonMode);
|
|
258468
258876
|
first = false;
|
|
258469
|
-
await new Promise((
|
|
258877
|
+
await new Promise((resolve12) => setTimeout(resolve12, 2000));
|
|
258470
258878
|
}
|
|
258471
258879
|
}
|
|
258472
258880
|
function formatLogs(entries, env3) {
|
|
@@ -258582,7 +258990,7 @@ function getLogsCommand() {
|
|
|
258582
258990
|
}
|
|
258583
258991
|
|
|
258584
258992
|
// src/cli/commands/project/scaffold.ts
|
|
258585
|
-
import { basename as basename6, resolve as
|
|
258993
|
+
import { basename as basename6, resolve as resolve12 } from "node:path";
|
|
258586
258994
|
function resolveAppId(options) {
|
|
258587
258995
|
const appId = options.appId;
|
|
258588
258996
|
if (!appId) {
|
|
@@ -258598,7 +259006,7 @@ function resolveAppId(options) {
|
|
|
258598
259006
|
async function scaffoldAction(ctx, name2, options, command2) {
|
|
258599
259007
|
const { log, runTask: runTask2 } = ctx;
|
|
258600
259008
|
const appId = resolveAppId(command2.optsWithGlobals());
|
|
258601
|
-
const resolvedPath =
|
|
259009
|
+
const resolvedPath = resolve12("./");
|
|
258602
259010
|
const projectName = (name2 ?? basename6(resolvedPath)).trim();
|
|
258603
259011
|
const template2 = await getTemplateById("backend-only");
|
|
258604
259012
|
log.info(`Scaffolding project at ${resolvedPath}`);
|
|
@@ -258995,7 +259403,7 @@ function getSecretsListCommand() {
|
|
|
258995
259403
|
}
|
|
258996
259404
|
|
|
258997
259405
|
// src/cli/commands/secrets/set.ts
|
|
258998
|
-
import { resolve as
|
|
259406
|
+
import { resolve as resolve13 } from "node:path";
|
|
258999
259407
|
function parseEntries(entries) {
|
|
259000
259408
|
const secrets = {};
|
|
259001
259409
|
for (const entry of entries) {
|
|
@@ -259026,7 +259434,7 @@ async function setSecretsAction({ log, runTask: runTask2 }, entries, options) {
|
|
|
259026
259434
|
validateInput(entries, options);
|
|
259027
259435
|
let secrets;
|
|
259028
259436
|
if (options.envFile) {
|
|
259029
|
-
secrets = await parseEnvFile(
|
|
259437
|
+
secrets = await parseEnvFile(resolve13(options.envFile));
|
|
259030
259438
|
if (Object.keys(secrets).length === 0) {
|
|
259031
259439
|
throw new InvalidInputError("The env file contains no valid KEY=VALUE entries.");
|
|
259032
259440
|
}
|
|
@@ -259055,81 +259463,123 @@ function getSecretsCommand() {
|
|
|
259055
259463
|
}
|
|
259056
259464
|
|
|
259057
259465
|
// src/cli/commands/site/deploy.ts
|
|
259058
|
-
import { resolve as resolve11 } from "node:path";
|
|
259059
259466
|
async function deployAction2(ctx, options) {
|
|
259060
259467
|
const { isNonInteractive } = ctx;
|
|
259061
259468
|
if (isNonInteractive && !options.yes) {
|
|
259062
259469
|
throw new InvalidInputError("--yes is required in non-interactive mode");
|
|
259063
259470
|
}
|
|
259064
259471
|
const project2 = await readProjectSettings();
|
|
259065
|
-
const
|
|
259066
|
-
if (
|
|
259472
|
+
const planned = await planAppDeploy(project2);
|
|
259473
|
+
if (planned.kind === "none") {
|
|
259067
259474
|
throw new ConfigNotFoundError("No site configuration found.", {
|
|
259068
259475
|
hints: [
|
|
259069
259476
|
{
|
|
259070
259477
|
message: `Add 'site.outputDirectory' to your config.jsonc (e.g., "site": { "outputDirectory": "dist" })`
|
|
259478
|
+
},
|
|
259479
|
+
{
|
|
259480
|
+
message: "Full-stack apps ship from their build artifact — run your framework's build first"
|
|
259071
259481
|
}
|
|
259072
259482
|
]
|
|
259073
259483
|
});
|
|
259074
259484
|
}
|
|
259075
259485
|
if (!options.yes) {
|
|
259076
259486
|
const shouldDeploy = await Re({
|
|
259077
|
-
message: `Deploy site from ${outputDirectory}?`
|
|
259487
|
+
message: planned.kind === "full-stack" ? "Deploy full-stack app?" : `Deploy site from ${project2.site?.outputDirectory}?`
|
|
259078
259488
|
});
|
|
259079
259489
|
if (Ct(shouldDeploy) || !shouldDeploy) {
|
|
259080
259490
|
return { outroMessage: "Deployment cancelled" };
|
|
259081
259491
|
}
|
|
259082
259492
|
}
|
|
259083
259493
|
await maybeBuildBeforeDeploy(ctx, project2, options.build);
|
|
259084
|
-
const
|
|
259085
|
-
|
|
259086
|
-
|
|
259087
|
-
|
|
259088
|
-
|
|
259089
|
-
|
|
259090
|
-
|
|
259494
|
+
const plan = await planAppDeploy(project2);
|
|
259495
|
+
switch (plan.kind) {
|
|
259496
|
+
case "full-stack":
|
|
259497
|
+
return await deployFullStackApp(ctx, project2.root, options);
|
|
259498
|
+
case "static-deployment":
|
|
259499
|
+
return await deployToDeploymentsApi(ctx, project2.root, plan.outputDir, options);
|
|
259500
|
+
case "static":
|
|
259501
|
+
return await deployTarball(ctx, plan.outputDir);
|
|
259502
|
+
case "none":
|
|
259503
|
+
return { outroMessage: "Nothing to deploy" };
|
|
259504
|
+
}
|
|
259505
|
+
}
|
|
259506
|
+
async function deployFullStackApp(ctx, projectRoot, options) {
|
|
259507
|
+
const gitHash = await resolveGitHash(projectRoot, options.gitHash);
|
|
259508
|
+
const { deploymentId } = await runDeployTask(ctx, {
|
|
259509
|
+
start: "Deploying full-stack app...",
|
|
259510
|
+
success: theme.colors.base44Orange("Full-stack app deployed"),
|
|
259511
|
+
error: "Full-stack deploy failed"
|
|
259512
|
+
}, async (progress) => await deployFullStack({
|
|
259513
|
+
projectRoot,
|
|
259514
|
+
gitHash,
|
|
259515
|
+
concurrency: options.concurrency,
|
|
259516
|
+
progress
|
|
259517
|
+
}));
|
|
259518
|
+
return deploymentResult(ctx, deploymentId, gitHash);
|
|
259519
|
+
}
|
|
259520
|
+
async function deployToDeploymentsApi(ctx, projectRoot, outputDir, options) {
|
|
259521
|
+
const gitHash = await resolveGitHash(projectRoot, options.gitHash);
|
|
259522
|
+
const { deploymentId } = await runDeployTask(ctx, {
|
|
259523
|
+
start: "Deploying site...",
|
|
259524
|
+
success: "Site deployed",
|
|
259525
|
+
error: "Site deploy failed"
|
|
259526
|
+
}, async (progress) => await deployStaticSite({
|
|
259091
259527
|
outputDir,
|
|
259092
259528
|
gitHash,
|
|
259093
|
-
concurrency,
|
|
259094
|
-
progress
|
|
259095
|
-
|
|
259096
|
-
|
|
259097
|
-
|
|
259098
|
-
|
|
259099
|
-
|
|
259100
|
-
|
|
259101
|
-
|
|
259102
|
-
|
|
259529
|
+
concurrency: options.concurrency,
|
|
259530
|
+
progress
|
|
259531
|
+
}));
|
|
259532
|
+
return deploymentResult(ctx, deploymentId, gitHash);
|
|
259533
|
+
}
|
|
259534
|
+
async function deployTarball({ runTask: runTask2 }, outputDir) {
|
|
259535
|
+
const { appUrl } = await runTask2("Creating archive and deploying site...", async () => await deploySite(outputDir), {
|
|
259536
|
+
successMessage: "Site deployed successfully",
|
|
259537
|
+
errorMessage: "Deployment failed"
|
|
259538
|
+
});
|
|
259539
|
+
return { outroMessage: `Visit your site at: ${appUrl}` };
|
|
259540
|
+
}
|
|
259541
|
+
async function runDeployTask({ runTask: runTask2, log }, labels, deploy5) {
|
|
259542
|
+
const progressLines = [];
|
|
259543
|
+
const warnings = [];
|
|
259544
|
+
const result = await runTask2(labels.start, async (updateMessage) => await deploy5({
|
|
259545
|
+
onWarning: (message) => {
|
|
259546
|
+
warnings.push(message);
|
|
259547
|
+
},
|
|
259548
|
+
onAssets: ({ totalAssets, newAssets }) => {
|
|
259549
|
+
const line = `Found ${totalAssets} static assets (${newAssets} new)`;
|
|
259550
|
+
progressLines.push(line);
|
|
259551
|
+
updateMessage(line);
|
|
259552
|
+
},
|
|
259553
|
+
onAssetUpload: ({ uploadedFiles, totalFiles }) => {
|
|
259554
|
+
updateMessage(`Uploaded ${uploadedFiles} of ${totalFiles} assets`);
|
|
259555
|
+
},
|
|
259556
|
+
onWorker: ({ moduleCount }) => {
|
|
259557
|
+
updateMessage(`Deploying worker (${moduleCount} modules)…`);
|
|
259103
259558
|
}
|
|
259104
|
-
}), { successMessage:
|
|
259559
|
+
}), { successMessage: labels.success, errorMessage: labels.error });
|
|
259105
259560
|
for (const line of progressLines) {
|
|
259106
259561
|
log.message(theme.styles.dim(line));
|
|
259107
259562
|
}
|
|
259563
|
+
for (const warning of warnings) {
|
|
259564
|
+
log.warn(warning);
|
|
259565
|
+
}
|
|
259566
|
+
return result;
|
|
259567
|
+
}
|
|
259568
|
+
function deploymentResult({ jsonMode }, deploymentId, gitHash) {
|
|
259108
259569
|
return {
|
|
259109
259570
|
outroMessage: `Deployment ${deploymentId} (commit ${gitHash.slice(0, 12)})`,
|
|
259110
259571
|
stdout: jsonMode ? `${JSON.stringify({ deploymentId, gitHash }, null, 2)}
|
|
259111
259572
|
` : undefined
|
|
259112
259573
|
};
|
|
259113
259574
|
}
|
|
259114
|
-
async function deployTarball({ runTask: runTask2 }, outputDir) {
|
|
259115
|
-
const { appUrl } = await runTask2("Creating archive and deploying site...", async () => await deploySite(outputDir), {
|
|
259116
|
-
successMessage: "Site deployed successfully",
|
|
259117
|
-
errorMessage: "Deployment failed"
|
|
259118
|
-
});
|
|
259119
|
-
return { outroMessage: `Visit your site at: ${appUrl}` };
|
|
259120
|
-
}
|
|
259121
259575
|
function getSiteDeployCommand() {
|
|
259122
|
-
|
|
259123
|
-
|
|
259124
|
-
|
|
259125
|
-
|
|
259126
|
-
|
|
259127
|
-
}
|
|
259128
|
-
return value;
|
|
259129
|
-
}));
|
|
259130
|
-
command2.addOption(new Option("--concurrency <n>", "Parallel asset uploads").default(DEFAULT_UPLOAD_CONCURRENCY).argParser(parseConcurrency));
|
|
259576
|
+
return new Base44Command("deploy").description("Deploy the built site to Base44 hosting (full-stack apps deploy their Workers build)").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)").addOption(new Option("--git-hash <hash>", "Commit the build came from (defaults to the checkout's HEAD)").argParser(parseGitHash)).addOption(new Option("--concurrency <n>", "Parallel asset uploads").default(DEFAULT_UPLOAD_CONCURRENCY).argParser(parseConcurrency)).action(deployAction2);
|
|
259577
|
+
}
|
|
259578
|
+
function parseGitHash(value) {
|
|
259579
|
+
if (!isGitCommitHash(value)) {
|
|
259580
|
+
throw new InvalidArgumentError("Expected a git commit hash (7-64 hex chars).");
|
|
259131
259581
|
}
|
|
259132
|
-
return
|
|
259582
|
+
return value;
|
|
259133
259583
|
}
|
|
259134
259584
|
function parseConcurrency(value) {
|
|
259135
259585
|
const parsed = Number(value);
|
|
@@ -259138,10 +259588,6 @@ function parseConcurrency(value) {
|
|
|
259138
259588
|
}
|
|
259139
259589
|
return parsed;
|
|
259140
259590
|
}
|
|
259141
|
-
function staticDeploymentsEnabled(env3 = process.env) {
|
|
259142
|
-
const value = env3.BASE44_STATIC_DEPLOYMENTS;
|
|
259143
|
-
return value === "1" || value === "true";
|
|
259144
|
-
}
|
|
259145
259591
|
|
|
259146
259592
|
// src/cli/commands/site/open.ts
|
|
259147
259593
|
async function openAction({
|
|
@@ -259247,10 +259693,10 @@ function toPascalCase(name2) {
|
|
|
259247
259693
|
return name2.split(/[-_\s]+/).map((w8) => w8.charAt(0).toUpperCase() + w8.slice(1)).join("");
|
|
259248
259694
|
}
|
|
259249
259695
|
// src/core/types/update-project.ts
|
|
259250
|
-
import { join as
|
|
259696
|
+
import { join as join29 } from "node:path";
|
|
259251
259697
|
var TYPES_INCLUDE_PATH = `${PROJECT_SUBDIR}/${TYPES_OUTPUT_SUBDIR}/*.d.ts`;
|
|
259252
259698
|
async function updateProjectConfig(projectRoot) {
|
|
259253
|
-
const tsconfigPath =
|
|
259699
|
+
const tsconfigPath = join29(projectRoot, "tsconfig.json");
|
|
259254
259700
|
if (!await pathExists(tsconfigPath)) {
|
|
259255
259701
|
return false;
|
|
259256
259702
|
}
|
|
@@ -259714,7 +260160,7 @@ function createDevLogger(label2, labelColor = theme.styles.dim) {
|
|
|
259714
260160
|
// src/cli/dev/dev-server/main.ts
|
|
259715
260161
|
var import_cors = __toESM(require_lib4(), 1);
|
|
259716
260162
|
var import_express6 = __toESM(require_express(), 1);
|
|
259717
|
-
import { dirname as
|
|
260163
|
+
import { dirname as dirname24, join as join36 } from "node:path";
|
|
259718
260164
|
|
|
259719
260165
|
// ../../node_modules/get-port/index.js
|
|
259720
260166
|
import net from "node:net";
|
|
@@ -259741,14 +260187,14 @@ var getLocalHosts = () => {
|
|
|
259741
260187
|
}
|
|
259742
260188
|
return results;
|
|
259743
260189
|
};
|
|
259744
|
-
var checkAvailablePort = (options8) => new Promise((
|
|
260190
|
+
var checkAvailablePort = (options8) => new Promise((resolve15, reject) => {
|
|
259745
260191
|
const server = net.createServer();
|
|
259746
260192
|
server.unref();
|
|
259747
260193
|
server.on("error", reject);
|
|
259748
260194
|
server.listen(options8, () => {
|
|
259749
260195
|
const { port } = server.address();
|
|
259750
260196
|
server.close(() => {
|
|
259751
|
-
|
|
260197
|
+
resolve15(port);
|
|
259752
260198
|
});
|
|
259753
260199
|
});
|
|
259754
260200
|
});
|
|
@@ -259849,7 +260295,7 @@ var $setGracefulCleanup = tmp.setGracefulCleanup;
|
|
|
259849
260295
|
|
|
259850
260296
|
// src/cli/dev/dev-server/function-manager.ts
|
|
259851
260297
|
import { spawn as spawn2 } from "node:child_process";
|
|
259852
|
-
import { dirname as
|
|
260298
|
+
import { dirname as dirname21, join as join30 } from "node:path";
|
|
259853
260299
|
import { pathToFileURL } from "node:url";
|
|
259854
260300
|
|
|
259855
260301
|
// src/cli/dev/dev-server/base-function-manager.ts
|
|
@@ -259954,7 +260400,7 @@ class FunctionManager extends BaseFunctionManager {
|
|
|
259954
260400
|
}
|
|
259955
260401
|
spawnFunction(func, port) {
|
|
259956
260402
|
this.logger.log(`Spawning function "${func.name}" on port ${port}`);
|
|
259957
|
-
const importMapPath =
|
|
260403
|
+
const importMapPath = join30(dirname21(this.wrapperPath), "import-map.json");
|
|
259958
260404
|
const process23 = spawn2("deno", ["run", "--allow-all", "--import-map", importMapPath, this.wrapperPath], {
|
|
259959
260405
|
env: {
|
|
259960
260406
|
...globalThis.process.env,
|
|
@@ -259993,7 +260439,7 @@ class FunctionManager extends BaseFunctionManager {
|
|
|
259993
260439
|
});
|
|
259994
260440
|
}
|
|
259995
260441
|
waitForReady(name2, runningFunc) {
|
|
259996
|
-
return new Promise((
|
|
260442
|
+
return new Promise((resolve15, reject) => {
|
|
259997
260443
|
runningFunc.process.on("exit", (code2) => {
|
|
259998
260444
|
if (!runningFunc.ready) {
|
|
259999
260445
|
clearTimeout(timeout3);
|
|
@@ -260016,7 +260462,7 @@ class FunctionManager extends BaseFunctionManager {
|
|
|
260016
260462
|
runningFunc.ready = true;
|
|
260017
260463
|
clearTimeout(timeout3);
|
|
260018
260464
|
runningFunc.process.stdout?.off("data", onData);
|
|
260019
|
-
|
|
260465
|
+
resolve15(runningFunc.port);
|
|
260020
260466
|
}
|
|
260021
260467
|
};
|
|
260022
260468
|
runningFunc.process.stdout?.on("data", onData);
|
|
@@ -260028,7 +260474,7 @@ class FunctionManager extends BaseFunctionManager {
|
|
|
260028
260474
|
import { mkdirSync as mkdirSync2, writeFileSync as writeFileSync2 } from "node:fs";
|
|
260029
260475
|
import { isBuiltin } from "node:module";
|
|
260030
260476
|
import { homedir as homedir3 } from "node:os";
|
|
260031
|
-
import { join as
|
|
260477
|
+
import { join as join31 } from "node:path";
|
|
260032
260478
|
import { pathToFileURL as pathToFileURL6 } from "node:url";
|
|
260033
260479
|
var depsPromise;
|
|
260034
260480
|
function loadDeps() {
|
|
@@ -260149,9 +260595,9 @@ export default {
|
|
|
260149
260595
|
};
|
|
260150
260596
|
`;
|
|
260151
260597
|
function ensureBundlerConfig() {
|
|
260152
|
-
const dir =
|
|
260598
|
+
const dir = join31(homedir3(), ".base44", "function-bundler");
|
|
260153
260599
|
mkdirSync2(dir, { recursive: true });
|
|
260154
|
-
const configPath =
|
|
260600
|
+
const configPath = join31(dir, "deno.json");
|
|
260155
260601
|
writeFileSync2(configPath, `${JSON.stringify({ nodeModulesDir: "auto" }, null, 2)}
|
|
260156
260602
|
`);
|
|
260157
260603
|
return configPath;
|
|
@@ -261621,16 +262067,16 @@ function createCustomIntegrationRoutes(remoteProxy, logger2) {
|
|
|
261621
262067
|
|
|
261622
262068
|
// src/cli/dev/dev-server/watcher.ts
|
|
261623
262069
|
import { EventEmitter as EventEmitter4 } from "node:events";
|
|
261624
|
-
import { relative as
|
|
262070
|
+
import { relative as relative7 } from "node:path";
|
|
261625
262071
|
|
|
261626
262072
|
// ../../node_modules/chokidar/index.js
|
|
261627
262073
|
import { EventEmitter as EventEmitter3 } from "node:events";
|
|
261628
262074
|
import { stat as statcb, Stats } from "node:fs";
|
|
261629
|
-
import { readdir as readdir3, stat as
|
|
262075
|
+
import { readdir as readdir3, stat as stat6 } from "node:fs/promises";
|
|
261630
262076
|
import * as sp3 from "node:path";
|
|
261631
262077
|
|
|
261632
262078
|
// ../../node_modules/readdirp/index.js
|
|
261633
|
-
import { lstat as lstat2, readdir as readdir2, realpath, stat as
|
|
262079
|
+
import { lstat as lstat2, readdir as readdir2, realpath, stat as stat4 } from "node:fs/promises";
|
|
261634
262080
|
import { join as pjoin, relative as prelative, resolve as presolve, sep as psep } from "node:path";
|
|
261635
262081
|
import { Readable as Readable6 } from "node:stream";
|
|
261636
262082
|
var EntryTypes = {
|
|
@@ -261712,7 +262158,7 @@ class ReaddirpStream extends Readable6 {
|
|
|
261712
262158
|
const { root: root2, type } = opts;
|
|
261713
262159
|
this._fileFilter = normalizeFilter(opts.fileFilter);
|
|
261714
262160
|
this._directoryFilter = normalizeFilter(opts.directoryFilter);
|
|
261715
|
-
const statMethod = opts.lstat ? lstat2 :
|
|
262161
|
+
const statMethod = opts.lstat ? lstat2 : stat4;
|
|
261716
262162
|
if (wantBigintFsStats) {
|
|
261717
262163
|
this._stat = (path19) => statMethod(path19, { bigint: true });
|
|
261718
262164
|
} else {
|
|
@@ -261865,7 +262311,7 @@ function readdirp(root2, options8 = {}) {
|
|
|
261865
262311
|
|
|
261866
262312
|
// ../../node_modules/chokidar/handler.js
|
|
261867
262313
|
import { watch as fs_watch, unwatchFile, watchFile } from "node:fs";
|
|
261868
|
-
import { realpath as fsrealpath, lstat as lstat3, open as open2, stat as
|
|
262314
|
+
import { realpath as fsrealpath, lstat as lstat3, open as open2, stat as stat5 } from "node:fs/promises";
|
|
261869
262315
|
import { type as osType } from "node:os";
|
|
261870
262316
|
import * as sp2 from "node:path";
|
|
261871
262317
|
var STR_DATA = "data";
|
|
@@ -261891,7 +262337,7 @@ var EVENTS = {
|
|
|
261891
262337
|
};
|
|
261892
262338
|
var EV = EVENTS;
|
|
261893
262339
|
var THROTTLE_MODE_WATCH = "watch";
|
|
261894
|
-
var statMethods = { lstat: lstat3, stat:
|
|
262340
|
+
var statMethods = { lstat: lstat3, stat: stat5 };
|
|
261895
262341
|
var KEY_LISTENERS = "listeners";
|
|
261896
262342
|
var KEY_ERR = "errHandlers";
|
|
261897
262343
|
var KEY_RAW = "rawEmitters";
|
|
@@ -262351,9 +262797,9 @@ class NodeFsHandler {
|
|
|
262351
262797
|
if (this.fsw.closed) {
|
|
262352
262798
|
return;
|
|
262353
262799
|
}
|
|
262354
|
-
const
|
|
262800
|
+
const dirname23 = sp2.dirname(file2);
|
|
262355
262801
|
const basename8 = sp2.basename(file2);
|
|
262356
|
-
const parent = this.fsw._getWatchedDir(
|
|
262802
|
+
const parent = this.fsw._getWatchedDir(dirname23);
|
|
262357
262803
|
let prevStats = stats;
|
|
262358
262804
|
if (parent.has(basename8))
|
|
262359
262805
|
return;
|
|
@@ -262362,7 +262808,7 @@ class NodeFsHandler {
|
|
|
262362
262808
|
return;
|
|
262363
262809
|
if (!newStats || newStats.mtimeMs === 0) {
|
|
262364
262810
|
try {
|
|
262365
|
-
const newStats2 = await
|
|
262811
|
+
const newStats2 = await stat5(file2);
|
|
262366
262812
|
if (this.fsw.closed)
|
|
262367
262813
|
return;
|
|
262368
262814
|
const at13 = newStats2.atimeMs;
|
|
@@ -262380,7 +262826,7 @@ class NodeFsHandler {
|
|
|
262380
262826
|
prevStats = newStats2;
|
|
262381
262827
|
}
|
|
262382
262828
|
} catch (error48) {
|
|
262383
|
-
this.fsw._remove(
|
|
262829
|
+
this.fsw._remove(dirname23, basename8);
|
|
262384
262830
|
}
|
|
262385
262831
|
} else if (parent.has(basename8)) {
|
|
262386
262832
|
const at13 = newStats.atimeMs;
|
|
@@ -262469,7 +262915,7 @@ class NodeFsHandler {
|
|
|
262469
262915
|
this._addToNodeFs(path19, initialAdd, wh2, depth + 1);
|
|
262470
262916
|
}
|
|
262471
262917
|
}).on(EV.ERROR, this._boundHandleError);
|
|
262472
|
-
return new Promise((
|
|
262918
|
+
return new Promise((resolve16, reject) => {
|
|
262473
262919
|
if (!stream)
|
|
262474
262920
|
return reject();
|
|
262475
262921
|
stream.once(STR_END, () => {
|
|
@@ -262478,7 +262924,7 @@ class NodeFsHandler {
|
|
|
262478
262924
|
return;
|
|
262479
262925
|
}
|
|
262480
262926
|
const wasThrottled = throttler ? throttler.clear() : false;
|
|
262481
|
-
|
|
262927
|
+
resolve16(undefined);
|
|
262482
262928
|
previous.getChildren().filter((item) => {
|
|
262483
262929
|
return item !== directory && !current.has(item);
|
|
262484
262930
|
}).forEach((item) => {
|
|
@@ -262603,11 +263049,11 @@ function createPattern(matcher) {
|
|
|
262603
263049
|
if (matcher.path === string4)
|
|
262604
263050
|
return true;
|
|
262605
263051
|
if (matcher.recursive) {
|
|
262606
|
-
const
|
|
262607
|
-
if (!
|
|
263052
|
+
const relative7 = sp3.relative(matcher.path, string4);
|
|
263053
|
+
if (!relative7) {
|
|
262608
263054
|
return false;
|
|
262609
263055
|
}
|
|
262610
|
-
return !
|
|
263056
|
+
return !relative7.startsWith("..") && !sp3.isAbsolute(relative7);
|
|
262611
263057
|
}
|
|
262612
263058
|
return false;
|
|
262613
263059
|
};
|
|
@@ -263034,7 +263480,7 @@ class FSWatcher extends EventEmitter3 {
|
|
|
263034
263480
|
const fullPath = opts.cwd ? sp3.join(opts.cwd, path19) : path19;
|
|
263035
263481
|
let stats2;
|
|
263036
263482
|
try {
|
|
263037
|
-
stats2 = await
|
|
263483
|
+
stats2 = await stat6(fullPath);
|
|
263038
263484
|
} catch (err) {}
|
|
263039
263485
|
if (!stats2 || this.closed)
|
|
263040
263486
|
return;
|
|
@@ -263138,8 +263584,8 @@ class FSWatcher extends EventEmitter3 {
|
|
|
263138
263584
|
}
|
|
263139
263585
|
return this._userIgnored(path19, stats);
|
|
263140
263586
|
}
|
|
263141
|
-
_isntIgnored(path19,
|
|
263142
|
-
return !this._isIgnored(path19,
|
|
263587
|
+
_isntIgnored(path19, stat7) {
|
|
263588
|
+
return !this._isIgnored(path19, stat7);
|
|
263143
263589
|
}
|
|
263144
263590
|
_getWatchHelpers(path19) {
|
|
263145
263591
|
return new WatchHelper(path19, this.options.followSymlinks, this);
|
|
@@ -263306,7 +263752,7 @@ class WatchBase44 extends EventEmitter4 {
|
|
|
263306
263752
|
ignoreInitial: true
|
|
263307
263753
|
});
|
|
263308
263754
|
watcher.on("all", import_debounce.default(async (_event, path19) => {
|
|
263309
|
-
this.emit("change", name2,
|
|
263755
|
+
this.emit("change", name2, relative7(targetPath, path19));
|
|
263310
263756
|
}, WATCH_DEBOUNCE_MS));
|
|
263311
263757
|
watcher.on("error", (err) => {
|
|
263312
263758
|
this.logger.error(`Watch handler failed for ${targetPath}`, err);
|
|
@@ -263395,7 +263841,7 @@ async function createDevServer(options8) {
|
|
|
263395
263841
|
}
|
|
263396
263842
|
remoteProxy(req, res, next);
|
|
263397
263843
|
});
|
|
263398
|
-
const server = await new Promise((
|
|
263844
|
+
const server = await new Promise((resolve17, reject) => {
|
|
263399
263845
|
const s5 = app.listen(port, "127.0.0.1", (err) => {
|
|
263400
263846
|
if (err) {
|
|
263401
263847
|
if ("code" in err && err.code === "EADDRINUSE") {
|
|
@@ -263404,7 +263850,7 @@ async function createDevServer(options8) {
|
|
|
263404
263850
|
reject(err);
|
|
263405
263851
|
}
|
|
263406
263852
|
} else {
|
|
263407
|
-
|
|
263853
|
+
resolve17(s5);
|
|
263408
263854
|
}
|
|
263409
263855
|
});
|
|
263410
263856
|
});
|
|
@@ -263413,8 +263859,8 @@ async function createDevServer(options8) {
|
|
|
263413
263859
|
broadcastEntityEvent(io6, appId, entityName, event);
|
|
263414
263860
|
};
|
|
263415
263861
|
const base44ConfigWatcher = new WatchBase44({
|
|
263416
|
-
functions:
|
|
263417
|
-
entities:
|
|
263862
|
+
functions: join36(dirname24(project2.configPath), project2.functionsDir),
|
|
263863
|
+
entities: join36(dirname24(project2.configPath), project2.entitiesDir)
|
|
263418
263864
|
}, devLogger);
|
|
263419
263865
|
base44ConfigWatcher.on("change", async (name2) => {
|
|
263420
263866
|
try {
|
|
@@ -263454,13 +263900,13 @@ async function createDevServer(options8) {
|
|
|
263454
263900
|
if (!server.listening) {
|
|
263455
263901
|
return;
|
|
263456
263902
|
}
|
|
263457
|
-
await new Promise((
|
|
263903
|
+
await new Promise((resolve17, reject) => {
|
|
263458
263904
|
server.close((error48) => {
|
|
263459
263905
|
if (error48) {
|
|
263460
263906
|
reject(error48);
|
|
263461
263907
|
return;
|
|
263462
263908
|
}
|
|
263463
|
-
|
|
263909
|
+
resolve17();
|
|
263464
263910
|
});
|
|
263465
263911
|
});
|
|
263466
263912
|
};
|
|
@@ -263531,15 +263977,15 @@ class ServeRunner {
|
|
|
263531
263977
|
return;
|
|
263532
263978
|
}
|
|
263533
263979
|
this.stopping = true;
|
|
263534
|
-
const exited = new Promise((
|
|
263980
|
+
const exited = new Promise((resolve17) => child.once("exit", () => resolve17()));
|
|
263535
263981
|
if (process23.platform === "win32" && child.pid) {
|
|
263536
263982
|
const taskkill = spawn3("taskkill", ["/pid", String(child.pid), "/T", "/F"], {
|
|
263537
263983
|
stdio: "ignore",
|
|
263538
263984
|
windowsHide: true
|
|
263539
263985
|
});
|
|
263540
|
-
await new Promise((
|
|
263541
|
-
taskkill.once("exit", () =>
|
|
263542
|
-
taskkill.once("error", () =>
|
|
263986
|
+
await new Promise((resolve17) => {
|
|
263987
|
+
taskkill.once("exit", () => resolve17());
|
|
263988
|
+
taskkill.once("error", () => resolve17());
|
|
263543
263989
|
});
|
|
263544
263990
|
} else if (child.pid) {
|
|
263545
263991
|
try {
|
|
@@ -263734,13 +264180,13 @@ async function runScript(options8) {
|
|
|
263734
264180
|
}
|
|
263735
264181
|
// src/cli/commands/exec.ts
|
|
263736
264182
|
function readStdin2() {
|
|
263737
|
-
return new Promise((
|
|
264183
|
+
return new Promise((resolve17, reject) => {
|
|
263738
264184
|
let data = "";
|
|
263739
264185
|
process.stdin.setEncoding("utf-8");
|
|
263740
264186
|
process.stdin.on("data", (chunk) => {
|
|
263741
264187
|
data += chunk;
|
|
263742
264188
|
});
|
|
263743
|
-
process.stdin.on("end", () =>
|
|
264189
|
+
process.stdin.on("end", () => resolve17(data));
|
|
263744
264190
|
process.stdin.on("error", reject);
|
|
263745
264191
|
});
|
|
263746
264192
|
}
|
|
@@ -263811,7 +264257,7 @@ Examples:
|
|
|
263811
264257
|
}
|
|
263812
264258
|
|
|
263813
264259
|
// src/cli/commands/project/eject.ts
|
|
263814
|
-
import { resolve as
|
|
264260
|
+
import { resolve as resolve17 } from "node:path";
|
|
263815
264261
|
var import_kebabCase2 = __toESM(require_kebabCase(), 1);
|
|
263816
264262
|
async function eject(ctx, options8, command2) {
|
|
263817
264263
|
const { log, runTask: runTask2, isNonInteractive } = ctx;
|
|
@@ -263875,7 +264321,7 @@ async function eject(ctx, options8, command2) {
|
|
|
263875
264321
|
Ne("Operation cancelled.");
|
|
263876
264322
|
throw new CLIExitError(0);
|
|
263877
264323
|
}
|
|
263878
|
-
const resolvedPath =
|
|
264324
|
+
const resolvedPath = resolve17(selectedPath);
|
|
263879
264325
|
await runTask2("Downloading your project's code...", async (updateMessage) => {
|
|
263880
264326
|
await createProjectFilesForExistingProject({
|
|
263881
264327
|
projectId,
|
|
@@ -263969,7 +264415,7 @@ var import_detect_agent = __toESM(require_dist5(), 1);
|
|
|
263969
264415
|
import { release, type } from "node:os";
|
|
263970
264416
|
|
|
263971
264417
|
// ../../node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
263972
|
-
import { dirname as
|
|
264418
|
+
import { dirname as dirname25, posix, sep as sep2 } from "path";
|
|
263973
264419
|
function createModulerModifier() {
|
|
263974
264420
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
263975
264421
|
return async (frames) => {
|
|
@@ -263978,7 +264424,7 @@ function createModulerModifier() {
|
|
|
263978
264424
|
return frames;
|
|
263979
264425
|
};
|
|
263980
264426
|
}
|
|
263981
|
-
function createGetModuleFromFilename(basePath = process.argv[1] ?
|
|
264427
|
+
function createGetModuleFromFilename(basePath = process.argv[1] ? dirname25(process.argv[1]) : process.cwd(), isWindows5 = sep2 === "\\") {
|
|
263982
264428
|
const normalizedBase = isWindows5 ? normalizeWindowsPath2(basePath) : basePath;
|
|
263983
264429
|
return (filename) => {
|
|
263984
264430
|
if (!filename)
|
|
@@ -266256,14 +266702,14 @@ async function addSourceContext(frames) {
|
|
|
266256
266702
|
return frames;
|
|
266257
266703
|
}
|
|
266258
266704
|
function getContextLinesFromFile(path19, ranges, output) {
|
|
266259
|
-
return new Promise((
|
|
266705
|
+
return new Promise((resolve18) => {
|
|
266260
266706
|
const stream = createReadStream2(path19);
|
|
266261
266707
|
const lineReaded = createInterface2({
|
|
266262
266708
|
input: stream
|
|
266263
266709
|
});
|
|
266264
266710
|
function destroyStreamAndResolve() {
|
|
266265
266711
|
stream.destroy();
|
|
266266
|
-
|
|
266712
|
+
resolve18();
|
|
266267
266713
|
}
|
|
266268
266714
|
let lineNumber = 0;
|
|
266269
266715
|
let currentRangeIndex = 0;
|
|
@@ -267375,15 +267821,15 @@ class PostHogBackendClient extends PostHogCoreStateless {
|
|
|
267375
267821
|
return true;
|
|
267376
267822
|
if (this.featureFlagsPoller === undefined)
|
|
267377
267823
|
return false;
|
|
267378
|
-
return new Promise((
|
|
267824
|
+
return new Promise((resolve18) => {
|
|
267379
267825
|
const timeout3 = setTimeout(() => {
|
|
267380
267826
|
cleanup();
|
|
267381
|
-
|
|
267827
|
+
resolve18(false);
|
|
267382
267828
|
}, timeoutMs);
|
|
267383
267829
|
const cleanup = this._events.on("localEvaluationFlagsLoaded", (count2) => {
|
|
267384
267830
|
clearTimeout(timeout3);
|
|
267385
267831
|
cleanup();
|
|
267386
|
-
|
|
267832
|
+
resolve18(count2 > 0);
|
|
267387
267833
|
});
|
|
267388
267834
|
});
|
|
267389
267835
|
}
|
|
@@ -268167,9 +268613,9 @@ function addCommandInfoToErrorReporter(program2, errorReporter) {
|
|
|
268167
268613
|
});
|
|
268168
268614
|
}
|
|
268169
268615
|
// src/cli/index.ts
|
|
268170
|
-
var __dirname4 =
|
|
268616
|
+
var __dirname4 = dirname26(fileURLToPath6(import.meta.url));
|
|
268171
268617
|
async function runCLI(options8) {
|
|
268172
|
-
ensureNpmAssets(
|
|
268618
|
+
ensureNpmAssets(join37(__dirname4, "../assets"));
|
|
268173
268619
|
const errorReporter = new ErrorReporter;
|
|
268174
268620
|
errorReporter.registerProcessErrorHandlers();
|
|
268175
268621
|
const jsonMode = process.argv.includes("--json");
|
|
@@ -268208,4 +268654,4 @@ export {
|
|
|
268208
268654
|
CLIExitError
|
|
268209
268655
|
};
|
|
268210
268656
|
|
|
268211
|
-
//# debugId=
|
|
268657
|
+
//# debugId=E23804C9C857B3A464756E2164756E21
|