Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Nov 15, 2024
1 parent d391f6d commit fa75993
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/fcl-bundle/src/build/get-input-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const typescript = require("rollup-plugin-typescript2")
const postcss = require("rollup-plugin-postcss")
const imagePlugin = require("@rollup/plugin-image")
const {DEFAULT_EXTENSIONS} = require("@babel/core")
const { getPackageRoot } = require("../util")
const {getPackageRoot} = require("../util")

const SUPPRESSED_WARNING_CODES = [
"MISSING_GLOBAL_NAME",
Expand Down
13 changes: 5 additions & 8 deletions packages/fcl-wc/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
const tailwindcss = require('tailwindcss');
const tailwindConfig = require('./tailwind.config.js');
const autoprefixer = require('autoprefixer');
const tailwindcss = require("tailwindcss")
const tailwindConfig = require("./tailwind.config.js")
const autoprefixer = require("autoprefixer")

module.exports = {
plugins: [
tailwindcss(tailwindConfig),
autoprefixer,
],
};
plugins: [tailwindcss(tailwindConfig), autoprefixer],
}

0 comments on commit fa75993

Please sign in to comment.