We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f9f2ef + 3e53d91 commit a503200Copy full SHA for a503200
README.md
@@ -33,6 +33,7 @@ gulp.task('css', function () {
33
```js
34
var postcss = require('gulp-postcss');
35
var autoprefixer = require('autoprefixer-core');
36
+var cssnext = require('cssnext');
37
var opacity = function (css, opts) {
38
css.eachDecl(function(decl) {
39
if (decl.prop === 'opacity') {
@@ -47,7 +48,8 @@ var opacity = function (css, opts) {
47
48
gulp.task('css', function () {
49
var processors = [
50
autoprefixer({browsers: ['last 1 version']}),
- opacity
51
+ opacity,
52
+ cssnext()
53
];
54
return gulp.src('./src/*.css')
55
.pipe(postcss(processors))
0 commit comments