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 63a810d commit 7e68b54Copy full SHA for 7e68b54
CHANGELOG.md
@@ -1,6 +1,9 @@
1
# Change Log
2
This project adheres to [Semantic Versioning](http://semver.org/).
3
4
+## 8.1.7
5
+* Fix `import` support in TypeScript (by Remco Haszing).
6
+
7
## 8.1.6
8
* Reverted `package.exports` Node.js 15 fix.
9
lib/processor.js
@@ -5,7 +5,7 @@ let Root = require('./root')
class Processor {
constructor (plugins = []) {
- this.version = '8.1.6'
+ this.version = '8.1.7'
this.plugins = this.normalize(plugins)
10
}
11
package.json
@@ -1,6 +1,6 @@
{
"name": "postcss",
- "version": "8.1.6",
+ "version": "8.1.7",
"description": "Tool for transforming styles with JS plugins",
"engines": {
"node": "^10 || ^12 || >=14"
0 commit comments