Skip to content

Commit c7b6448

Browse files
committed
feat: read all tasks from monorepos
1 parent 03ecb5e commit c7b6448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/miseService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ export class MiseService {
347347

348348
try {
349349
const { stdout } = await this.cache.execCmd({
350-
command: includeHidden ? "tasks ls --json --hidden" : "tasks ls --json",
351-
});
350+
command: includeHidden ? 'tasks ls --all --json --hidden' : 'tasks ls --all --json'
351+
})
352352
return JSON.parse(stdout);
353353
} catch (error: unknown) {
354354
if (error instanceof Error && error.message.includes("mise trust")) {

0 commit comments

Comments
 (0)