@jmlweb/prettier-config-tailwind 1.0.1 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +26 -0
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 1.0.2
12
+
13
+ ### Patch Changes
14
+
15
+ - 21918eb: Standardize repository field format to object format across all packages and configure syncpack to preserve it.
16
+ - Updated dependencies [21918eb]
17
+ - @jmlweb/prettier-config-base@1.0.2
18
+
3
19
  ## 1.0.1
4
20
 
5
21
  ### 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.1",
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.1"
52
+ "@jmlweb/prettier-config-base": "1.0.3"
53
53
  },
54
54
  "devDependencies": {
55
55
  "prettier": "^3.3.3",