Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-31 10:40:53 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-31 12:00:33 +0300
commit3a31397ac29f71db5313ea0e819a1362a019b5cc (patch)
treec14a1b88ccf1c4a7c57b752314ceec9c0e38b183 /webpack.common.js
parenta384b4a97a2a4444d8e2c831765dbf35c8da0db2 (diff)
Use `babel-loader-exclude-node-modules-except`
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js18
1 files changed, 16 insertions, 2 deletions
diff --git a/webpack.common.js b/webpack.common.js
index b7aeb7193d6..e9adf418107 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -1,7 +1,8 @@
/* eslint-disable camelcase */
-const path = require('path')
const { merge } = require('webpack-merge')
const { VueLoaderPlugin } = require('vue-loader')
+const babelLoaderExcludeNodeModulesExcept = require('babel-loader-exclude-node-modules-except')
+const path = require('path')
const accessibility = require('./apps/accessibility/webpack')
const comments = require('./apps/comments/webpack')
@@ -85,7 +86,20 @@ module.exports = []
loader: 'babel-loader',
// automatically detect necessary packages to
// transpile in the node_modules folder
- exclude: /node_modules(?!(\/|\\)(nextcloud-vue-collections|p-finally|p-limit|p-locate|p-queue|p-timeout|p-try|toastify-js|v-tooltip)(\/|\\))/,
+ exclude: babelLoaderExcludeNodeModulesExcept([
+ 'nextcloud-vue-collections',
+ 'p-finally',
+ 'p-limit',
+ 'p-locate',
+ 'p-queue',
+ 'p-timeout',
+ 'p-try',
+ 'toastify-js',
+ 'v-tooltip',
+ '@nextcloud/dialogs',
+ 'davclient.js',
+ 'semver',
+ ]),
},
{
test: /\.(png|jpg|gif)$/,