postcss-loader
Advanced tools
Comparing version
@@ -5,2 +5,9 @@ # Changelog | ||
### [4.0.2](https://github.com/webpack-contrib/postcss-loader/compare/v4.0.1...v4.0.2) (2020-09-15) | ||
### Bug Fixes | ||
* compatibility with `postcss@8` ([#479](https://github.com/webpack-contrib/postcss-loader/issues/479)) ([218b0f8](https://github.com/webpack-contrib/postcss-loader/commit/218b0f8013acfafdabea9f561d4c3d074bd2eff3)) | ||
### [4.0.1](https://github.com/webpack-contrib/postcss-loader/compare/v4.0.0...v4.0.1) (2020-09-08) | ||
@@ -48,3 +55,3 @@ | ||
* you don't need `ident` option for loader | ||
* `Object` syntax for the `plugin` option is soft deprecated, please migrate on `Array` syntax (`plugins: ['postcss-present-env', ['cssnano', options]]`) | ||
* `Object` syntax for the `plugin` option is soft deprecated, please migrate on `Array` syntax (`plugins: ['postcss-preset-env', ['cssnano', options]]`) | ||
@@ -51,0 +58,0 @@ <a name="3.0.0"></a> |
{ | ||
"name": "postcss-loader", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "PostCSS loader for webpack", | ||
@@ -42,3 +42,3 @@ "license": "MIT", | ||
"webpack": "^4.0.0 || ^5.0.0", | ||
"postcss": "^7.0.0" | ||
"postcss": "^7.0.0 || ^8.0.1" | ||
}, | ||
@@ -65,3 +65,3 @@ "dependencies": { | ||
"del-cli": "^3.0.1", | ||
"eslint": "^7.8.1", | ||
"eslint": "^7.9.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
@@ -77,7 +77,7 @@ "eslint-plugin-import": "^2.22.0", | ||
"npm-run-all": "^4.1.5", | ||
"postcss": "^7.0.32", | ||
"postcss": "^8.0.1", | ||
"postcss-dark-theme-class": "^0.4.0", | ||
"postcss-import": "^12.0.1", | ||
"postcss-js": "^2.0.0", | ||
"postcss-nested": "^4.2.3", | ||
"postcss-rtl": "^1.7.3", | ||
"postcss-short": "^5.0.0", | ||
@@ -84,0 +84,0 @@ "prettier": "^2.1.1", |
@@ -74,3 +74,3 @@ <div align="center"> | ||
plugins: [ | ||
'postcss-present-env', | ||
'postcss-preset-env', | ||
{ | ||
@@ -339,3 +339,3 @@ // Options | ||
['postcss-short', { prefix: 'x' }], | ||
'postcss-present-env', | ||
'postcss-preset-env', | ||
], | ||
@@ -348,3 +348,3 @@ }; | ||
['postcss-short', { prefix: 'x' }], | ||
'postcss-present-env', | ||
'postcss-preset-env', | ||
], | ||
@@ -390,3 +390,3 @@ }; | ||
['postcss-short', { prefix: 'x' }], | ||
'postcss-present-env', | ||
'postcss-preset-env', | ||
], | ||
@@ -413,3 +413,3 @@ }; | ||
['postcss-short', { prefix: 'x' }], | ||
'postcss-present-env', | ||
'postcss-preset-env', | ||
], | ||
@@ -424,3 +424,3 @@ }; | ||
['postcss-short', { prefix: 'x' }], | ||
'postcss-present-env', | ||
'postcss-preset-env', | ||
], | ||
@@ -440,3 +440,3 @@ }; | ||
'postcss-short': { prefix: 'x' }, | ||
'postcss-present-env': {}, | ||
'postcss-preset-env': {}, | ||
}, | ||
@@ -443,0 +443,0 @@ }; |
55811
0.63%