prettier-plugin-tailwind-styled-components 0.0.1 → 0.0.3
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 +26 -0
- package/README.md +1 -1
- package/dist/index.js +29 -27
- package/package.json +12 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
- Nothing yet!
|
|
11
|
+
|
|
12
|
+
## [0.0.2] - 2023-01-20
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Fix issue with expression formatting
|
|
17
|
+
|
|
18
|
+
## [0.0.3] - 2023-07-20
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Add Prettier v3 support
|
|
23
|
+
|
|
24
|
+
[unreleased]: https://github.com/dimitribarbot/prettier-plugin-tailwind-styled-components/compare/v0.0.3...HEAD
|
|
25
|
+
[0.0.3]: https://github.com/dimitribarbot/prettier-plugin-tailwind-styled-components/compare/v0.0.2...v0.0.3
|
|
26
|
+
[0.0.2]: https://github.com/dimitribarbot/prettier-plugin-tailwind-styled-components/compare/21dc923c300729789a998bbedfbb2f54b7ef04a6...v0.0.2
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
A [Prettier](https://prettier.io/) plugin for Tailwind CSS v3.0+ and [Tailwind Styled-Components](https://www.npmjs.com/package/tailwind-styled-components) v2.2.0+ that automatically sorts classes based on [the recommended class order](https://tailwindcss.com/blog/automatic-class-sorting-with-prettier#how-classes-are-sorted).
|
|
1
|
+
A [Prettier](https://prettier.io/) plugin for Tailwind CSS v3.0+ and [Tailwind Styled-Components](https://www.npmjs.com/package/tailwind-styled-components) v2.2.0+ that automatically sorts classes based on [the recommended class order](https://tailwindcss.com/blog/automatic-class-sorting-with-prettier#how-classes-are-sorted). This plugin is based on the official [Tailwind CSS prettier plugin](https://github.com/tailwindlabs/prettier-plugin-tailwindcss).
|
|
2
2
|
|
|
3
3
|
## Installation
|
|
4
4
|
|