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
path: root/build
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-11-23 17:11:16 +0300
committerGitHub <noreply@github.com>2020-11-23 17:11:16 +0300
commitee2bcdec3d201b5826fdaaf72a950a08581d3df4 (patch)
treed6e382e9eb75303b7fcbee8a47e85d0000035875 /build
parent3e823e0b752b51b277a3a2d563c6b987f7496cf9 (diff)
postcss.config.js: remove arrow return (#32235)
Diffstat (limited to 'build')
-rw-r--r--build/postcss.config.js26
1 files changed, 14 insertions, 12 deletions
diff --git a/build/postcss.config.js b/build/postcss.config.js
index 56b7d94cc1..ef416258f7 100644
--- a/build/postcss.config.js
+++ b/build/postcss.config.js
@@ -1,16 +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
+ }
}
}
-})
+}