This repository was archived by the owner on Apr 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
- Nothing yet!
11
11
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
+
12
19
## [ 0.1.6] - 2021-03-22
13
20
14
21
### Fixed
@@ -63,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
63
70
64
71
- Everything!
65
72
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
67
75
[ 0.1.6 ] : https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.5...v0.1.6
68
76
[ 0.1.5 ] : https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.4...v0.1.5
69
77
[ 0.1.4 ] : https://github.com/tailwindlabs/tailwindcss-jit/compare/v0.1.3...v0.1.4
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ function nameClass(...args) {
93
93
* @param {import('postcss').Node[] } nodes
94
94
* */
95
95
function cloneNodes ( nodes ) {
96
- return nodes . map ( node => node . clone ( ) )
96
+ return nodes . map ( ( node ) => node . clone ( ) )
97
97
}
98
98
99
99
module . exports = {
You can’t perform that action at this time.
0 commit comments