@adyen/eslint-plugin-bento 2.5.3 → 2.6.0

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 (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.6.0 (2026-02-04)
4
+
5
+ ### Miscellaneous Chores
6
+
7
+ - added generator to scaffold deprecation lint rules ([bdc60eb63](https://github.com/Adyen/bento/commit/bdc60eb63))
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - erice
12
+
13
+
14
+ ## 2.5.4 (2026-01-21)
15
+
16
+ This was a version bump only for eslint to align it with other projects, there were no code changes.
17
+
18
+
3
19
  ## 2.5.3 (2026-01-13)
4
20
 
5
21
  ### Miscellaneous Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adyen/eslint-plugin-bento",
3
- "version": "2.5.3",
3
+ "version": "2.6.0",
4
4
  "description": "Adyen Bento ESLint rules",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -14,7 +14,8 @@
14
14
  "!**/*.test.ts"
15
15
  ],
16
16
  "exports": {
17
- ".": "./index.js"
17
+ ".": "./index.js",
18
+ "./package.json": "./package.json"
18
19
  },
19
20
  "repository": {
20
21
  "type": "git",
@@ -43,6 +44,7 @@
43
44
  "eslint": "^9.0",
44
45
  "vue-eslint-parser": "^9.0"
45
46
  },
47
+ "generators": "./generators.json",
46
48
  "scripts": {
47
49
  "test": "vitest run --config ./vitest.config.ts",
48
50
  "test:coverage": "pnpm run test --coverage",