@jmlweb/prettier-config-tailwind 1.0.2 → 1.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 +8 -0
- package/README.md +26 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @jmlweb/prettier-config-tailwind
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6b73301: Add changelog section with link to CHANGELOG.md in package READMEs
|
|
8
|
+
- Updated dependencies [6b73301]
|
|
9
|
+
- @jmlweb/prettier-config-base@1.0.3
|
|
10
|
+
|
|
3
11
|
## 1.0.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -21,6 +21,8 @@ npm install --save-dev @jmlweb/prettier-config-tailwind prettier prettier-plugin
|
|
|
21
21
|
|
|
22
22
|
**Note**: The `prettier-plugin-tailwindcss` plugin must be installed as a dev dependency.
|
|
23
23
|
|
|
24
|
+
> 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
|
|
25
|
+
|
|
24
26
|
## 🚀 Quick Start
|
|
25
27
|
|
|
26
28
|
### Option 1: Using `package.json` (Recommended)
|
|
@@ -150,9 +152,33 @@ See real-world usage examples:
|
|
|
150
152
|
|
|
151
153
|
## 🔗 Related Packages
|
|
152
154
|
|
|
155
|
+
### Internal Packages
|
|
156
|
+
|
|
153
157
|
- [`@jmlweb/prettier-config-base`](../prettier-config-base) - Base Prettier configuration (extended by this package)
|
|
154
158
|
- [`@jmlweb/eslint-config-base`](../eslint-config-base) - ESLint config for TypeScript projects
|
|
155
159
|
|
|
160
|
+
### External Tools
|
|
161
|
+
|
|
162
|
+
- [Prettier](https://prettier.io/) - Opinionated code formatter
|
|
163
|
+
- [Tailwind CSS](https://tailwindcss.com/) - Utility-first CSS framework
|
|
164
|
+
- [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) - Official Tailwind class sorting plugin
|
|
165
|
+
|
|
166
|
+
## 🔄 Migration Guide
|
|
167
|
+
|
|
168
|
+
### Upgrading to a New Version
|
|
169
|
+
|
|
170
|
+
> **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
|
|
171
|
+
|
|
172
|
+
**No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
|
|
173
|
+
|
|
174
|
+
For version history, see the [Changelog](./CHANGELOG.md).
|
|
175
|
+
|
|
176
|
+
**Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
|
|
177
|
+
|
|
178
|
+
## 📜 Changelog
|
|
179
|
+
|
|
180
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
|
|
181
|
+
|
|
156
182
|
## 📄 License
|
|
157
183
|
|
|
158
184
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jmlweb/prettier-config-tailwind",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Prettier configuration for jmlweb projects with Tailwind CSS support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
52
|
-
"@jmlweb/prettier-config-base": "1.0.
|
|
52
|
+
"@jmlweb/prettier-config-base": "1.0.3"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"prettier": "^3.3.3",
|