chore: rename webpack configs to make clear they contain common js

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/55495/head
Ferdinand Thiessen 2025-10-01 15:32:42 +07:00
parent 1d580e886f
commit 44962c76e7
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
3 changed files with 2 additions and 3 deletions

@ -1,4 +1,3 @@
/* eslint-disable n/no-extraneous-require */
/* eslint-disable camelcase */
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
@ -14,7 +13,7 @@ const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
const WorkboxPlugin = require('workbox-webpack-plugin')
const WebpackSPDXPlugin = require('./build/WebpackSPDXPlugin.js')
const modules = require('./webpack.modules.js')
const modules = require('./webpack.modules.cjs')
const { codecovWebpackPlugin } = require('@codecov/webpack-plugin')
const appVersion = readFileSync('./version.php').toString().match(/OC_Version.+\[([0-9]{2})/)?.[1] ?? 'unknown'

@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
const { merge } = require('webpack-merge')
const config = require('./webpack.common.js')
const config = require('./webpack.common.cjs')
let isDev = false
try {