@base44-preview/cli 0.1.1-pr.554.19314a8 → 0.1.1-pr.554.2d149a3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +4 -1
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -253814,6 +253814,9 @@ async function logsAction(ctx, options) {
|
|
|
253814
253814
|
if (options.until) {
|
|
253815
253815
|
throw new InvalidInputError("--until cannot be combined with --follow (a stream has no end).");
|
|
253816
253816
|
}
|
|
253817
|
+
if (options.order?.toLowerCase() === "desc") {
|
|
253818
|
+
throw new InvalidInputError("--order desc cannot be combined with --follow (a live tail streams oldest to newest).");
|
|
253819
|
+
}
|
|
253817
253820
|
options.order = "asc";
|
|
253818
253821
|
return followLogs(functionNames, options, availableFunctionNames, ctx.jsonMode);
|
|
253819
253822
|
}
|
|
@@ -262521,4 +262524,4 @@ export {
|
|
|
262521
262524
|
CLIExitError
|
|
262522
262525
|
};
|
|
262523
262526
|
|
|
262524
|
-
//# debugId=
|
|
262527
|
+
//# debugId=05C4715B766F1DDE64756E2164756E21
|