Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit 0580323

Browse files
committed
Update changelog
1 parent fde976c commit 0580323

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Nothing yet!
1111

12+
## [0.1.7] - 2021-03-22
13+
14+
### Fixed
15+
16+
- Clone nodes to prevent bugs related to rule cache mutation ([#141](https://github.com/tailwindlabs/tailwindcss-jit/pull/141))
17+
18+
1219
## [0.1.6] - 2021-03-22
1320

1421
### Fixed
@@ -63,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6370

6471
- Everything!
6572

66-
[unreleased]: https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.6...HEAD
73+
[unreleased]: https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.7...HEAD
74+
[0.1.7]: https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.6...v0.1.7
6775
[0.1.6]: https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.5...v0.1.6
6876
[0.1.5]: https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.4...v0.1.5
6977
[0.1.4]: https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.3...v0.1.4

src/lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function nameClass(...args) {
9393
* @param {import('postcss').Node[]} nodes
9494
* */
9595
function cloneNodes(nodes) {
96-
return nodes.map(node => node.clone())
96+
return nodes.map((node) => node.clone())
9797
}
9898

9999
module.exports = {

0 commit comments

Comments
 (0)