From c21d9928e1ac8ecf78a66df17ed525b7756258f2 Mon Sep 17 00:00:00 2001 From: Colum Ferry Date: Wed, 11 Dec 2024 16:14:51 +0000 Subject: [PATCH] fix(core): ensure rsbuild is part of nx package group (#29310) ## Current Behavior The new `@nx/rsbuild` package is not listed as part of the Nx package group. This can lead to issues with reporting and migrations. ## Expected Behavior Ensure `@nx/rsbuild` package is listed in the packageGroup --- packages/nx/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/nx/package.json b/packages/nx/package.json index bd23f33a5394c..98ad418778cee 100644 --- a/packages/nx/package.json +++ b/packages/nx/package.json @@ -124,6 +124,7 @@ "@nx/rollup", "@nx/remix", "@nx/rspack", + "@nx/rsbuild", "@nx/storybook", "@nx/vite", "@nx/vue",