]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
postcss.config.js: remove arrow return (#32235)
authorXhmikosR <xhmikosr@gmail.com>
Mon, 23 Nov 2020 14:11:16 +0000 (16:11 +0200)
committerGitHub <noreply@github.com>
Mon, 23 Nov 2020 14:11:16 +0000 (16:11 +0200)
build/postcss.config.js

index 56b7d94cc1fa6dd32a0cb7166190fd4a11cf7e51..ef416258f7fcde20fc0739c96903834462326c2c 100644 (file)
@@ -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
+      }
     }
   }
-})
+}