@base44-preview/cli 0.1.1-pr.554.01e80f2 → 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 +3 -3
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -253814,8 +253814,8 @@ 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) {
|
|
253818
|
-
throw new InvalidInputError("--order cannot be combined with --follow (a live tail
|
|
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
253819
|
}
|
|
253820
253820
|
options.order = "asc";
|
|
253821
253821
|
return followLogs(functionNames, options, availableFunctionNames, ctx.jsonMode);
|
|
@@ -262524,4 +262524,4 @@ export {
|
|
|
262524
262524
|
CLIExitError
|
|
262525
262525
|
};
|
|
262526
262526
|
|
|
262527
|
-
//# debugId=
|
|
262527
|
+
//# debugId=05C4715B766F1DDE64756E2164756E21
|