Skip to content

Commit

Permalink
docs(README): use strong equality operator in example (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
iMaximal authored and michael-ciniawsky committed Mar 16, 2018
1 parent e2f4498 commit 1e0cade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ module.exports = ({ file, options, env }) => ({
plugins: {
'postcss-import': { root: file.dirname },
'postcss-cssnext': options.cssnext ? options.cssnext : false,
'autoprefixer': env == 'production' ? options.autoprefixer : false,
'autoprefixer': env === 'production' ? options.autoprefixer : false,
'cssnano': env === 'production' ? options.cssnano : false
}
})
Expand Down

0 comments on commit 1e0cade

Please sign in to comment.