From 7c5e7fab371da7a4356a0dafa1b7ae15d675e8a7 Mon Sep 17 00:00:00 2001 From: Esref Durna Date: Mon, 8 May 2017 18:25:29 -0700 Subject: [PATCH] cssnext to postcss-cssnext cssnext@1.8.4: cssnext is now postcss-cssnext. cssnext is deprecated. See postcss-cssnext migration guide http://cssnext.io/postcss/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 455bcd05..1def7928 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ module.exports = ({ file, options, env }) => ({ parser: file.extname === '.sss' ? 'sugarss' : false, plugins: { 'postcss-import': { root: file.dirname }, - 'cssnext': options.cssnext ? options.cssnext : false, + 'postcss-cssnext': options.cssnext ? options.cssnext : false, 'autoprefixer': env == 'production' ? options.autoprefixer : false, 'cssnano': env === 'production' ? options.cssnano : false }