Skip to content

Commit 1e0cade

Browse files
iMaximalmichael-ciniawsky
authored andcommittedMar 16, 2018
docs(README): use strong equality operator in example (#344)
1 parent e2f4498 commit 1e0cade

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ module.exports = ({ file, options, env }) => ({
175175
plugins: {
176176
'postcss-import': { root: file.dirname },
177177
'postcss-cssnext': options.cssnext ? options.cssnext : false,
178-
'autoprefixer': env == 'production' ? options.autoprefixer : false,
178+
'autoprefixer': env === 'production' ? options.autoprefixer : false,
179179
'cssnano': env === 'production' ? options.cssnano : false
180180
}
181181
})

0 commit comments

Comments
 (0)
Please sign in to comment.