You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@ several processors, but parse CSS only once.
7
7
8
8
$ npm install --save-dev gulp-postcss
9
9
10
-
Install required [postcss plugins](https://www.npmjs.com/browse/keyword/postcss-plugin) separately. E.g. for autoprefixer, you need to install [autoprefixer-core](https://github.com/postcss/autoprefixer-core) package.
10
+
Install required [postcss plugins](https://www.npmjs.com/browse/keyword/postcss-plugin) separately. E.g. for autoprefixer, you need to install [autoprefixer](https://github.com/postcss/autoprefixer) package.
11
11
12
12
## Basic usage
13
13
14
14
```js
15
15
var postcss =require('gulp-postcss');
16
16
var gulp =require('gulp');
17
-
var autoprefixer =require('autoprefixer-core');
17
+
var autoprefixer =require('autoprefixer');
18
18
var mqpacker =require('css-mqpacker');
19
19
var csswring =require('csswring');
20
20
@@ -34,7 +34,7 @@ gulp.task('css', function () {
34
34
35
35
```js
36
36
var postcss =require('gulp-postcss');
37
-
var autoprefixer =require('autoprefixer-core');
37
+
var autoprefixer =require('autoprefixer');
38
38
var cssnext =require('cssnext');
39
39
varopacity=function (css, opts) {
40
40
css.eachDecl(function(decl) {
@@ -74,6 +74,9 @@ return gulp.src('./src/*.css')
74
74
75
75
## Changelog
76
76
77
+
* 5.1.10
78
+
* Use autoprefixer in README
79
+
77
80
* 5.1.9
78
81
* Prevent unhandled exception of the following pipes from being suppressed by Promise
0 commit comments