Skip to content

Commit

Permalink
Some styling moved to sheets. Added PostCSS to dev process
Browse files Browse the repository at this point in the history
  • Loading branch information
angelov-a committed Nov 21, 2018
1 parent 09dcbcb commit 58ba424
Show file tree
Hide file tree
Showing 5 changed files with 3,421 additions and 92 deletions.
10 changes: 9 additions & 1 deletion build/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { terser } from "rollup-plugin-terser"
import postcss from 'rollup-plugin-postcss'
import autoprefixer from 'autoprefixer'

export default {
input: 'src/wrapper.js',
Expand All @@ -8,5 +10,11 @@ export default {
exports: 'named',
},

plugins: [terser()],
plugins: [
postcss({
plugins: [autoprefixer()],
minimize: true
}),
terser()
],
}
Loading

0 comments on commit 58ba424

Please sign in to comment.