From f0476472676ac53b150776e31312792c5c6d6ed0 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 16 Mar 2018 16:00:42 +0500 Subject: [PATCH] fix eslint highlighting strong equal --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de3050ba..f331fc7a 100644 --- a/README.md +++ b/README.md @@ -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 } })