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 987547b commit f6128a3Copy full SHA for f6128a3
scripts/release/utils/workspace.ts
@@ -27,8 +27,8 @@ const writeFile = promisify(_writeFile);
27
28
const {
29
workspaces: rawWorkspaces
30
-}: { workspaces: string[] } = require(`${root}/package.json`);
31
-const workspaces = rawWorkspaces.map(workspace => `${root}/${workspace}`);
+}: { workspaces: { packages: string[] } } = require(`${root}/package.json`);
+const workspaces = rawWorkspaces.packages.map(workspace => `${root}/${workspace}`);
32
33
export function mapWorkspaceToPackages(
34
workspaces: string[]
0 commit comments