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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-11-23 17:11:16 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-11-24 09:40:11 +0300
commitb26768ee426075d011f9aec1d5508b3ec1b8ad64 (patch)
treef2e20431d284629724a864a64f6201d04b6a3acd
parent9260427a342f256506605dda32397e855a511b88 (diff)
postcss.config.js: remove arrow return (#32235)
-rw-r--r--build/postcss.config.js24
1 files changed, 14 insertions, 10 deletions
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
+ }
}
}
-})
+}