@jmlweb/eslint-config-base-js 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jmlweb/eslint-config-base-js
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
+
3
9
  ## 1.0.2
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -22,6 +22,8 @@
22
22
  npm install --save-dev @jmlweb/eslint-config-base-js eslint @eslint/js eslint-config-prettier eslint-plugin-simple-import-sort
23
23
  ```
24
24
 
25
+ > 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
26
+
25
27
  ## 🚀 Quick Start
26
28
 
27
29
  Create an `eslint.config.js` file in your project root:
@@ -243,9 +245,33 @@ See real-world usage examples:
243
245
 
244
246
  ## 🔗 Related Packages
245
247
 
248
+ ### Internal Packages
249
+
246
250
  - [`@jmlweb/eslint-config-base`](../eslint-config-base) - TypeScript ESLint config (extends this package)
247
251
  - [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
248
252
 
253
+ ### External Tools
254
+
255
+ - [ESLint](https://eslint.org/) - Pluggable linting utility for JavaScript
256
+ - [Prettier](https://prettier.io/) - Opinionated code formatter (pairs with eslint-config-prettier)
257
+ - [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) - Auto-sorts imports
258
+
259
+ ## 🔄 Migration Guide
260
+
261
+ ### Upgrading to a New Version
262
+
263
+ > **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
264
+
265
+ **No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
266
+
267
+ For version history, see the [Changelog](./CHANGELOG.md).
268
+
269
+ **Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
270
+
271
+ ## 📜 Changelog
272
+
273
+ See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
274
+
249
275
  ## 📄 License
250
276
 
251
277
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlweb/eslint-config-base-js",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Base ESLint configuration for JavaScript-only projects - foundation extended by @jmlweb/eslint-config-base",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",