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.
1 parent 14d8150 commit d3b7435Copy full SHA for d3b7435
3 files changed
CHANGELOG.md
@@ -1,6 +1,10 @@
1
# Change Log
2
This project adheres to [Semantic Versioning](https://semver.org/).
3
4
+## 8.4.5
5
+* Fixed `raws` types to make object extendable (by James Garbutt).
6
+* Moved from Yarn 1 to pnpm.
7
+
8
## 8.4.4
9
* Fixed absolute path in source map on zero plugins mode.
10
lib/processor.js
@@ -7,7 +7,7 @@ let Root = require('./root')
class Processor {
constructor(plugins = []) {
- this.version = '8.4.4'
+ this.version = '8.4.5'
11
this.plugins = this.normalize(plugins)
12
}
13
package.json
@@ -1,6 +1,6 @@
{
"name": "postcss",
- "version": "8.4.4",
+ "version": "8.4.5",
"description": "Tool for transforming styles with JS plugins",
"engines": {
"node": "^10 || ^12 || >=14"
0 commit comments