summaryrefslogtreecommitdiffstats
path: root/webpack.js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-03-29 11:00:56 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-03-29 13:09:22 +0200
commitce9182f3130996265456c6e275d66267c846624d (patch)
treef68efef1bde2f231305f70e965a7829fea334af6 /webpack.js
parenta8338c1705bf09904c785ce6befa54dd4534943d (diff)
Bump dependencies and webpack 5
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'webpack.js')
-rw-r--r--webpack.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/webpack.js b/webpack.js
index 6841c71b..3b2711d5 100644
--- a/webpack.js
+++ b/webpack.js
@@ -4,6 +4,8 @@ const webpackConfig = require('@nextcloud/webpack-vue-config')
webpackConfig.entry['files-action'] = path.join(__dirname, 'src', 'files-action.js')
webpackConfig.entry['admin-settings'] = path.join(__dirname, 'src', 'admin-settings.js')
-webpackConfig.plugins.push(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/))
+webpackConfig.plugins.push(...[
+ new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
+])
module.exports = webpackConfig