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

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-18 17:22:16 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-18 18:10:44 +0300
commit2db11646b9d78d66ff8f2e6f4f071ddb6b880620 (patch)
tree4e5472400117f1893b2ad6ebbc19e76a9b79c08e /webpack.common.js
parent6204f46baf604bcb2f7b4ba730fd8acb4de829e6 (diff)
Fix Firefox & Edge18 transpiling issues
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/webpack.common.js b/webpack.common.js
index d35c476c..c98bfe0f 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -30,8 +30,10 @@ module.exports = {
{
loader: 'sass-loader',
options: {
- functions: {
- 'get($keys)': SassGetGridConfig,
+ sassOptions: {
+ functions: {
+ 'get($keys)': SassGetGridConfig,
+ },
},
},
},
@@ -51,7 +53,7 @@ module.exports = {
{
test: /\.js$/,
loader: 'babel-loader',
- exclude: /node_modules(?!(\/|\\)(hot-patcher|webdav)(\/|\\))/,
+ exclude: /node_modules(?!(\/|\\)(hot-patcher|webdav|camelcase)(\/|\\))/,
},
{
test: /\.svg$/,