From 804015b432d0408e50ab266ee120abe341612111 Mon Sep 17 00:00:00 2001 From: Phillip Barta Date: Thu, 29 Sep 2022 10:39:57 +0200 Subject: [PATCH] fix(core): add missing packages to report command adds esbuild, rollup and webpack packages to report command --- packages/nx/src/command-line/report.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/nx/src/command-line/report.ts b/packages/nx/src/command-line/report.ts index 504d95b2e0e19..617ea64b5a239 100644 --- a/packages/nx/src/command-line/report.ts +++ b/packages/nx/src/command-line/report.ts @@ -20,6 +20,7 @@ export const packagesWeCareAbout = [ '@nrwl/cypress', '@nrwl/detox', '@nrwl/devkit', + '@nrwl/esbuild', '@nrwl/eslint-plugin-nx', '@nrwl/expo', '@nrwl/express', @@ -33,9 +34,11 @@ export const packagesWeCareAbout = [ '@nrwl/nx-plugin', '@nrwl/react', '@nrwl/react-native', + '@nrwl/rollup', '@nrwl/schematics', '@nrwl/storybook', '@nrwl/web', + '@nrwl/webpack', '@nrwl/workspace', 'typescript', ];