From: XhmikosR Date: Mon, 23 Nov 2020 14:11:16 +0000 (+0200) Subject: postcss.config.js: remove arrow return (#32235) X-Git-Tag: v4.6.0~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b26768ee426075d011f9aec1d5508b3ec1b8ad64;p=thirdparty%2Fbootstrap.git postcss.config.js: remove arrow return (#32235) --- diff --git a/build/postcss.config.js b/build/postcss.config.js index bd307fa35d..ef416258f7 100644 --- a/build/postcss.config.js +++ b/build/postcss.config.js @@ -1,14 +1,18 @@ 'use strict' -module.exports = ctx => ({ - map: ctx.file.dirname.includes('examples') ? false : { - inline: false, - annotation: true, - sourcesContent: true - }, - plugins: { - autoprefixer: { - cascade: false +module.exports = ctx => { + return { + map: ctx.file.dirname.includes('examples') ? + false : + { + inline: false, + annotation: true, + sourcesContent: true + }, + plugins: { + autoprefixer: { + cascade: false + } } } -}) +}