@cleocode/cleo 2026.3.40 → 2026.3.41
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 +2 -5
- package/dist/cli/index.js.map +2 -2
- package/dist/mcp/index.js +1 -0
- package/dist/mcp/index.js.map +1 -1
- package/package.json +3 -3
package/dist/cli/index.js
CHANGED
|
@@ -49060,6 +49060,7 @@ __export(src_exports, {
|
|
|
49060
49060
|
});
|
|
49061
49061
|
var init_src2 = __esm({
|
|
49062
49062
|
"packages/core/src/index.ts"() {
|
|
49063
|
+
"use strict";
|
|
49063
49064
|
init_src();
|
|
49064
49065
|
init_adapters();
|
|
49065
49066
|
init_admin();
|
|
@@ -87751,11 +87752,7 @@ function registerExistsCommand(program) {
|
|
|
87751
87752
|
|
|
87752
87753
|
// packages/cleo/src/cli/commands/export.ts
|
|
87753
87754
|
function registerExportCommand(program) {
|
|
87754
|
-
program.command("export").description("Export tasks to CSV, TSV, JSON, or markdown format").option(
|
|
87755
|
-
"--export-format <format>",
|
|
87756
|
-
"Export format: json, csv, tsv, markdown",
|
|
87757
|
-
"json"
|
|
87758
|
-
).option("--output <file>", "Output file path (stdout if omitted)").option("--status <statuses>", "Filter by status (comma-separated)").option("--parent <id>", "Filter by parent task").option("--phase <phase>", "Filter by phase").action(async (opts) => {
|
|
87755
|
+
program.command("export").description("Export tasks to CSV, TSV, JSON, or markdown format").option("--export-format <format>", "Export format: json, csv, tsv, markdown", "json").option("--output <file>", "Output file path (stdout if omitted)").option("--status <statuses>", "Filter by status (comma-separated)").option("--parent <id>", "Filter by parent task").option("--phase <phase>", "Filter by phase").action(async (opts) => {
|
|
87759
87756
|
const hasOutput = !!opts["output"];
|
|
87760
87757
|
if (hasOutput) {
|
|
87761
87758
|
await dispatchFromCli(
|