We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfdfd73 commit ffd483aCopy full SHA for ffd483a
workspaces/util/src/readWorkspaces.ts
@@ -11,6 +11,8 @@ export async function readWorkspaces(): Promise<string[]> {
11
"--json",
12
]);
13
14
+ console.log(yarnCommandResult);
15
+
16
return [...getLines(yarnCommandResult.stdout)]
17
.map((line) => assertIsObject(JSON.parse(line)))
18
.filter((workspace) => workspace.location !== ".")
0 commit comments