@jmlweb/tsconfig-astro 1.1.2 → 1.1.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @jmlweb/tsconfig-astro
2
2
 
3
+ ## 1.1.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/tsconfig-base@1.0.3
10
+
3
11
  ## 1.1.2
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -23,6 +23,8 @@
23
23
  npm install --save-dev @jmlweb/tsconfig-astro typescript astro @jmlweb/tsconfig-base
24
24
  ```
25
25
 
26
+ > 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
27
+
26
28
  ## 🚀 Quick Start
27
29
 
28
30
  Create a `tsconfig.json` file in your Astro project root:
@@ -227,10 +229,35 @@ This package requires the following peer dependencies:
227
229
 
228
230
  ## 🔗 Related Packages
229
231
 
232
+ ### Internal Packages
233
+
230
234
  - [`@jmlweb/tsconfig-base`](../tsconfig-base) - Base TypeScript configuration (extended by this package)
231
- - [`@jmlweb/eslint-config-base`](../eslint-config-base) - ESLint configuration for TypeScript projects
235
+ - [`@jmlweb/eslint-config-astro`](../eslint-config-astro) - ESLint configuration for Astro projects
232
236
  - [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
233
237
 
238
+ ### External Tools
239
+
240
+ - [TypeScript](https://www.typescriptlang.org/) - Strongly typed programming language that builds on JavaScript
241
+ - [Astro](https://astro.build/) - The web framework for content-driven websites
242
+ - [Astro integrations](https://astro.build/integrations/) - Official and community integrations
243
+ - [Vite](https://vite.dev/) - Build tool used by Astro
244
+
245
+ ## 🔄 Migration Guide
246
+
247
+ ### Upgrading to a New Version
248
+
249
+ > **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
250
+
251
+ **No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
252
+
253
+ For version history, see the [Changelog](./CHANGELOG.md).
254
+
255
+ **Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
256
+
257
+ ## 📜 Changelog
258
+
259
+ See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
260
+
234
261
  ## 📄 License
235
262
 
236
263
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlweb/tsconfig-astro",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "TypeScript configuration for Astro projects with JSX support and modern defaults",
5
5
  "main": "tsconfig.json",
6
6
  "exports": {
@@ -37,7 +37,7 @@
37
37
  "peerDependencies": {
38
38
  "astro": ">=4.0.0",
39
39
  "typescript": ">=5.0.0",
40
- "@jmlweb/tsconfig-base": "1.0.2"
40
+ "@jmlweb/tsconfig-base": "1.0.3"
41
41
  },
42
42
  "scripts": {}
43
43
  }