From 858528713213fe58b9c5ff8401d751bd8f72f96e Mon Sep 17 00:00:00 2001 From: Jimmy Jia Date: Thu, 20 Aug 2015 12:41:18 -0400 Subject: [PATCH] Fix cssnext usage in examples Fixes #23 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c2c16d5e..d9526ede 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ module.exports = { ] }, postcss: function () { - return [autoprefixer, cssnext]; + return [autoprefixer, cssnext()]; } } ``` @@ -52,7 +52,7 @@ Note that the context of this function module.exports = { ... postcss: function () { - return [autoprefixer, cssnext]; + return [autoprefixer, cssnext()]; } } ``` @@ -83,7 +83,7 @@ module.exports = { }, postcss: function () { return { - defaults: [autoprefixer, cssnext], + defaults: [autoprefixer, cssnext()], cleaner: [autoprefixer({ browsers: [] })] }; }