Skip to content

Commit

Permalink
Fixed lint error in PostCSS config; removed unused import in Webpack …
Browse files Browse the repository at this point in the history
…config
  • Loading branch information
Brian Vaughn committed Feb 16, 2017
1 parent 0b78ba3 commit 74cfc12
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module.exports = {
"autoprefixer": {
"browsers": ["last 2 version", "Firefox 15", "iOS 8"],
'autoprefixer': {
'browsers': ['last 2 version', 'Firefox 15', 'iOS 8']
},
// The plugins section is used by postcss-loader with webpack
plugins: [
require('autoprefixer'),
],
require('autoprefixer')
]
}
1 change: 0 additions & 1 deletion webpack.config.demo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const HtmlWebpackPlugin = require('html-webpack-plugin')
const autoprefixer = require('autoprefixer')
const path = require('path')
const webpack = require('webpack')

Expand Down
1 change: 0 additions & 1 deletion webpack.config.dev.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const HtmlWebpackPlugin = require('html-webpack-plugin')
const autoprefixer = require('autoprefixer')
const path = require('path')
const webpack = require('webpack')

Expand Down

0 comments on commit 74cfc12

Please sign in to comment.