Skip to content

Commit 74cfc12

Browse files
author
Brian Vaughn
committed
Fixed lint error in PostCSS config; removed unused import in Webpack config
1 parent 0b78ba3 commit 74cfc12

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

postcss.config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module.exports = {
2-
"autoprefixer": {
3-
"browsers": ["last 2 version", "Firefox 15", "iOS 8"],
2+
'autoprefixer': {
3+
'browsers': ['last 2 version', 'Firefox 15', 'iOS 8']
44
},
55
// The plugins section is used by postcss-loader with webpack
66
plugins: [
7-
require('autoprefixer'),
8-
],
7+
require('autoprefixer')
8+
]
99
}

webpack.config.demo.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const HtmlWebpackPlugin = require('html-webpack-plugin')
2-
const autoprefixer = require('autoprefixer')
32
const path = require('path')
43
const webpack = require('webpack')
54

webpack.config.dev.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const HtmlWebpackPlugin = require('html-webpack-plugin')
2-
const autoprefixer = require('autoprefixer')
32
const path = require('path')
43
const webpack = require('webpack')
54

0 commit comments

Comments
 (0)