From 54a133a862f7a5915b32d4c9ffba4cb2d2bde25b Mon Sep 17 00:00:00 2001 From: Aviv Ben Shahar Date: Mon, 6 May 2024 03:21:50 +0300 Subject: [PATCH] fix(apps): `cost-of-modules` node package --- src/commands/install/config/apps-groups/node.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/commands/install/config/apps-groups/node.ts b/src/commands/install/config/apps-groups/node.ts index 21aaa012..aa3a3f93 100755 --- a/src/commands/install/config/apps-groups/node.ts +++ b/src/commands/install/config/apps-groups/node.ts @@ -55,9 +55,16 @@ export const NODE_APPS: Readonly = [ tags: ['node-engineering'], commands: () => [NODE_GLOBAL('nodemon')], }, + { + name: 'cost-of-modules', + description: 'Full report of all the modules in node_modules and their sizes', + group: 'node', + tags: ['web-engineering', 'node-engineering'], + commands: () => [NODE_GLOBAL('cost-of-modules')], + }, { name: 'npmrc', - description: 'manage multiple .npmrc files effortlessly', + description: 'Manage multiple .npmrc files effortlessly', group: 'node', tags: ['web-engineering', 'node-engineering', 'devops'], commands: () => [NODE_GLOBAL('npmrc')],