From cb4e76060d0e26ef6753e339e042be06503da4ab Mon Sep 17 00:00:00 2001 From: Spencer Murray Date: Mon, 14 Apr 2025 10:02:11 -0400 Subject: [PATCH] ci: tweak Codecov webpack plugin config Signed-off-by: Spencer Murray --- webpack.common.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/webpack.common.js b/webpack.common.js index d7b7fd9c7b8..f4d85d751d4 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -226,11 +226,10 @@ const config = { resourceRegExp: /^\.\/locale$/, contextRegExp: /moment\/min$/, }), - codecovWebpackPlugin({ - enableBundleAnalysis: process.env.CODECOV_TOKEN !== undefined, - bundleName: 'nextcloud', - uploadToken: process.env.CODECOV_TOKEN - }) + codecovWebpackPlugin({ + enableBundleAnalysis: !isDev, + bundleName: 'nextcloud', + }), ], externals: { OC: 'OC',