From 576aec47b2247900a5da7627437b79cbd01cac08 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 20 May 2024 07:00:07 -0400 Subject: [PATCH] include workspace packages --- workspace/unstable-release/src/workspaces.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/workspace/unstable-release/src/workspaces.js b/workspace/unstable-release/src/workspaces.js index 27ff5dc6..975c4e7c 100644 --- a/workspace/unstable-release/src/workspaces.js +++ b/workspace/unstable-release/src/workspaces.js @@ -10,10 +10,15 @@ import { readPackageJson } from "./read-package-json.js"; * out. */ export async function listPublicWorkspaces() { - let filePaths = await globby(["packages/**/package.json"], { - gitignore: true, - ignore: ["**/tests/**", "**/node_modules/**"], - }); + let filePaths = await globby( + [ + "packages/**/package.json", + "workspace/**/package.json", + ], { + gitignore: true, + ignore: ["**/tests/**", "**/node_modules/**"], + } + ); // eslint-disable-next-line no-console console.log("filePaths", filePaths.length);