@automattic/eslint-config-target-es 2.2.0 → 2.2.1

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 +8 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.2.1] - 2024-12-04
9
+ ### Added
10
+ - Enable test coverage. [#39961]
11
+
12
+ ### Changed
13
+ - Updated package dependencies. [#39176] [#39177] [#39302] [#39594] [#39707] [#39898] [#39999] [#40288] [#40363]
14
+
8
15
  ## [2.2.0] - 2024-08-29
9
16
  ### Added
10
17
  - Add mapping for `es-x/no-regexp-duplicate-named-capturing-groups`. [#39005]
@@ -68,6 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
68
75
  ### Added
69
76
  - Initial release.
70
77
 
78
+ [2.2.1]: https://github.com/Automattic/eslint-config-target-es/compare/2.2.0...2.2.1
71
79
  [2.2.0]: https://github.com/Automattic/eslint-config-target-es/compare/2.1.0...2.2.0
72
80
  [2.1.0]: https://github.com/Automattic/eslint-config-target-es/compare/2.0.0...2.1.0
73
81
  [2.0.0]: https://github.com/Automattic/eslint-config-target-es/compare/1.0.6...2.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/eslint-config-target-es",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "ESLint sharable config to activate eslint-plugin-es checks based on browserslist targets.",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/eslint-config-target-es/README.md#readme",
6
6
  "bugs": {
@@ -14,17 +14,18 @@
14
14
  "license": "GPL-2.0-or-later",
15
15
  "author": "Automattic",
16
16
  "scripts": {
17
- "test": "jest tests"
17
+ "test": "jest --config=tests/jest.config.cjs",
18
+ "test-coverage": "pnpm run test --coverage"
18
19
  },
19
20
  "dependencies": {
20
- "@mdn/browser-compat-data": "5.5.47",
21
+ "@mdn/browser-compat-data": "5.5.49",
21
22
  "browserslist": "^4.17.6",
22
23
  "debug": "^4.3.2",
23
24
  "semver": "^7.3.5"
24
25
  },
25
26
  "devDependencies": {
26
- "@wordpress/browserslist-config": "6.5.0",
27
- "eslint": "8.57.0",
27
+ "@wordpress/browserslist-config": "6.13.0",
28
+ "eslint": "8.57.1",
28
29
  "eslint-plugin-es-x": "7.8.0",
29
30
  "globals": "15.4.0",
30
31
  "jest": "29.7.0"