tailwindcss 3.0.20 → 3.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- Nothing yet!
|
|
11
11
|
|
|
12
|
+
## [3.0.21] - 2022-02-10
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Move prettier plugin to dev dependencies ([#7418](https://github.com/tailwindlabs/tailwindcss/pull/7418))
|
|
17
|
+
|
|
12
18
|
## [3.0.20] - 2022-02-10
|
|
13
19
|
|
|
14
20
|
### Added
|
|
@@ -1853,7 +1859,8 @@ No release notes
|
|
|
1853
1859
|
|
|
1854
1860
|
- Everything!
|
|
1855
1861
|
|
|
1856
|
-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.
|
|
1862
|
+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.21...HEAD
|
|
1863
|
+
[3.0.21]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.20...v3.0.21
|
|
1857
1864
|
[3.0.20]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.19...v3.0.20
|
|
1858
1865
|
[3.0.19]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.18...v3.0.19
|
|
1859
1866
|
[3.0.18]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.17...v3.0.18
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.21",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"jest-diff": "^27.4.6",
|
|
53
53
|
"postcss": "^8.4.6",
|
|
54
54
|
"prettier": "^2.5.1",
|
|
55
|
+
"prettier-plugin-tailwindcss": "^0.1.7",
|
|
55
56
|
"rimraf": "^3.0.0"
|
|
56
57
|
},
|
|
57
58
|
"peerDependencies": {
|
|
@@ -77,7 +78,6 @@
|
|
|
77
78
|
"postcss-nested": "5.0.6",
|
|
78
79
|
"postcss-selector-parser": "^6.0.9",
|
|
79
80
|
"postcss-value-parser": "^4.2.0",
|
|
80
|
-
"prettier-plugin-tailwindcss": "^0.1.7",
|
|
81
81
|
"quick-lru": "^5.1.1",
|
|
82
82
|
"resolve": "^1.22.0"
|
|
83
83
|
},
|