@jmlweb/eslint-config-node 2.0.2 → 2.0.4

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 +14 -0
  2. package/README.md +27 -0
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @jmlweb/eslint-config-node
2
2
 
3
+ ## 2.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 6b73301: Add changelog section with link to CHANGELOG.md in package READMEs
8
+ - Updated dependencies [6b73301]
9
+ - @jmlweb/eslint-config-base@2.0.3
10
+
11
+ ## 2.0.3
12
+
13
+ ### Patch Changes
14
+
15
+ - beae5ae: Add trailing newlines to source files for consistency.
16
+
3
17
  ## 2.0.2
4
18
 
5
19
  ### Patch Changes
package/README.md CHANGED
@@ -24,6 +24,8 @@
24
24
  npm install --save-dev @jmlweb/eslint-config-node eslint @eslint/js typescript-eslint eslint-config-prettier eslint-plugin-n eslint-plugin-simple-import-sort globals @jmlweb/eslint-config-base
25
25
  ```
26
26
 
27
+ > 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
28
+
27
29
  ## 🚀 Quick Start
28
30
 
29
31
  Create an `eslint.config.js` file in your project root:
@@ -249,10 +251,35 @@ See real-world usage examples:
249
251
 
250
252
  ## 🔗 Related Packages
251
253
 
254
+ ### Internal Packages
255
+
252
256
  - [`@jmlweb/eslint-config-base`](../eslint-config-base) - Base TypeScript ESLint config (extended by this package)
253
257
  - [`@jmlweb/tsconfig-node`](../tsconfig-node) - TypeScript configuration for Node.js libraries
254
258
  - [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
255
259
 
260
+ ### External Tools
261
+
262
+ - [ESLint](https://eslint.org/) - Pluggable linting utility for JavaScript and TypeScript
263
+ - [Node.js](https://nodejs.org/) - JavaScript runtime built on Chrome's V8 engine
264
+ - [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) - ESLint rules for Node.js
265
+ - [tsx](https://github.com/privatenumber/tsx) - TypeScript execute (ts-node alternative)
266
+
267
+ ## 🔄 Migration Guide
268
+
269
+ ### Upgrading to a New Version
270
+
271
+ > **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
272
+
273
+ **No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
274
+
275
+ For version history, see the [Changelog](./CHANGELOG.md).
276
+
277
+ **Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
278
+
279
+ ## 📜 Changelog
280
+
281
+ See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
282
+
256
283
  ## 📄 License
257
284
 
258
285
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlweb/eslint-config-node",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "ESLint configuration for Node.js projects with TypeScript, extending base config with Node.js-specific rules",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -48,16 +48,16 @@
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@eslint/js": "^9.0.0",
51
- "@jmlweb/eslint-config-base": "^2.0.2",
52
51
  "eslint": "^9.0.0",
53
52
  "eslint-config-prettier": "^9.1.0",
54
53
  "eslint-plugin-n": "^17.0.0",
55
54
  "eslint-plugin-simple-import-sort": "^12.0.0",
56
55
  "globals": "^15.0.0",
57
- "typescript-eslint": "^8.0.0"
56
+ "typescript-eslint": "^8.0.0",
57
+ "@jmlweb/eslint-config-base": "2.0.3"
58
58
  },
59
59
  "dependencies": {
60
- "@jmlweb/eslint-config-base": "2.0.2"
60
+ "@jmlweb/eslint-config-base": "2.0.3"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@eslint/js": "^9.39.2",
@@ -70,8 +70,8 @@
70
70
  "tsup": "^8.5.1",
71
71
  "typescript": "^5.9.3",
72
72
  "typescript-eslint": "^8.34.1",
73
- "@jmlweb/eslint-config-base": "2.0.2",
74
- "@jmlweb/tsconfig-internal": "0.0.1"
73
+ "@jmlweb/tsconfig-internal": "0.0.1",
74
+ "@jmlweb/eslint-config-base": "2.0.3"
75
75
  },
76
76
  "scripts": {
77
77
  "build": "tsup",