@cleocode/cleo 2026.4.150 → 2026.4.151
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 +1 -1
- package/dist/cli/index.js.map +2 -2
- package/package.json +9 -9
package/dist/cli/index.js
CHANGED
|
@@ -9296,7 +9296,7 @@ async function lifecycleStatus(epicId, projectRoot) {
|
|
|
9296
9296
|
return engineError("E_INVALID_INPUT", "epicId is required");
|
|
9297
9297
|
}
|
|
9298
9298
|
try {
|
|
9299
|
-
const data = await getLifecycleStatus(projectRoot, { epicId });
|
|
9299
|
+
const data = await getLifecycleStatus(projectRoot ?? process.cwd(), { epicId });
|
|
9300
9300
|
return engineSuccess(data);
|
|
9301
9301
|
} catch (err) {
|
|
9302
9302
|
if (err instanceof Error) {
|