Skip to content

Commit f3751c8

Browse files
authored
Merge pull request #162 from m4thieulavoie/chore/postcss-major-bump
chore: bump postcss version to 8
2 parents 00698a5 + c0519ac commit f3751c8

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- stable
5-
- 6
4+
- node
5+
- "12"
6+
- "10"
67
after_success:
78
- "npm run coveralls"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ several plugins, but parse CSS only once.
88

99
## Install
1010

11-
$ npm install --save-dev gulp-postcss
11+
$ npm install --save-dev postcss gulp-postcss
1212

1313
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.
1414

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"description": "PostCSS gulp plugin",
1818
"main": "index.js",
1919
"engines": {
20-
"node": ">=6"
20+
"node": "^10 || ^12 || >=14"
2121
},
2222
"scripts": {
2323
"coveralls": "coveralls < coverage/lcov.info",
@@ -43,8 +43,7 @@
4343
"dependencies": {
4444
"fancy-log": "^1.3.3",
4545
"plugin-error": "^1.0.1",
46-
"postcss": "^7.0.14",
47-
"postcss-load-config": "^2.0.0",
46+
"postcss-load-config": "^2.1.1",
4847
"vinyl-sourcemaps-apply": "^0.2.1"
4948
},
5049
"devDependencies": {
@@ -53,8 +52,12 @@
5352
"gulp-sourcemaps": "^2.6.5",
5453
"mocha": "^5.2.0",
5554
"nyc": "^12.0.2",
55+
"postcss": "^8.0.0",
5656
"proxyquire": "^2.1.0",
5757
"sinon": "^6.3.5",
5858
"vinyl": "^2.2.0"
59+
},
60+
"peerDependencies": {
61+
"postcss": "^8.0.0"
5962
}
6063
}

0 commit comments

Comments
 (0)