Skip to content

Commit 99e3145

Browse files
committed
Updated postcss
1 parent 749d6b7 commit 99e3145

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ return gulp.src('./src/*.css')
7474

7575
## Changelog
7676

77+
* 6.0.0
78+
* Updated PostCSS to version 5.0.0
79+
7780
* 5.1.10
7881
* Use autoprefixer in README
7982

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-postcss",
3-
"version": "5.1.10",
3+
"version": "6.0.0",
44
"description": "PostCSS gulp plugin",
55
"main": "index.js",
66
"scripts": {
@@ -24,7 +24,7 @@
2424
"homepage": "https://github.com/postcss/gulp-postcss",
2525
"dependencies": {
2626
"gulp-util": "^3.0.4",
27-
"postcss": "^4.1.11",
27+
"postcss": "^5.0.0",
2828
"vinyl-sourcemaps-apply": "^0.1.4"
2929
},
3030
"devDependencies": {

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ describe('PostCSS Guidelines', function () {
250250

251251

252252
function doubler (css) {
253-
css.eachDecl(function (decl) {
253+
css.walkDecls(function (decl) {
254254
decl.parent.prepend(decl.clone())
255255
})
256256
}

0 commit comments

Comments
 (0)