From 8309fe48edc06ce93bf86d19f9b4c51d557283ce Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 5 Dec 2025 09:43:16 -0500 Subject: [PATCH 1/2] fix: remove warning for `silent` config --- src/util/backend/npm-wrapper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/backend/npm-wrapper.ts b/src/util/backend/npm-wrapper.ts index 873349b7..69e179f1 100644 --- a/src/util/backend/npm-wrapper.ts +++ b/src/util/backend/npm-wrapper.ts @@ -23,7 +23,7 @@ export async function npmInstall( npm_config_update_notifier: 'false', npm_config_package_lock: 'false', npm_config_progress: 'false', - npm_config_silent: 'true', + npm_config_loglevel: 'silent', npm_config_cache: cacheDir, npm_config_registry: process.env.NPM_REGISTRY_URL, // Omit peerDependencies to match legacy behavior from npm@6 and `yarn@1` From 43d4b19cfc7518f93f720d245eccc5eb18c85941 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 5 Dec 2025 09:46:20 -0500 Subject: [PATCH 2/2] silent => warn --- src/util/backend/npm-wrapper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/backend/npm-wrapper.ts b/src/util/backend/npm-wrapper.ts index 69e179f1..774eda6d 100644 --- a/src/util/backend/npm-wrapper.ts +++ b/src/util/backend/npm-wrapper.ts @@ -23,7 +23,7 @@ export async function npmInstall( npm_config_update_notifier: 'false', npm_config_package_lock: 'false', npm_config_progress: 'false', - npm_config_loglevel: 'silent', + npm_config_loglevel: 'warn', npm_config_cache: cacheDir, npm_config_registry: process.env.NPM_REGISTRY_URL, // Omit peerDependencies to match legacy behavior from npm@6 and `yarn@1`