@automattic/eslint-config-target-es 1.0.1 → 1.0.2

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 +5 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ 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
+ ## [1.0.2] - 2022-04-05
9
+ ### Removed
10
+ - Removed eslint from devDependencies
11
+
8
12
  ## [1.0.1] - 2022-02-01
9
13
  ### Changed
10
14
  - General: update required node version to v16.13.2
@@ -14,4 +18,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
18
  ### Added
15
19
  - Initial release.
16
20
 
21
+ [1.0.2]: https://github.com/Automattic/eslint-config-target-es/compare/1.0.1...1.0.2
17
22
  [1.0.1]: https://github.com/Automattic/eslint-config-target-es/compare/1.0.0...1.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/eslint-config-target-es",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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": {
@@ -17,14 +17,13 @@
17
17
  "test-coverage": "jest tests --coverage --collectCoverageFrom='src/**/*.js' --coverageDirectory=\"$COVERAGE_DIR\" --coverageReporters=clover"
18
18
  },
19
19
  "dependencies": {
20
- "@mdn/browser-compat-data": "4.1.2",
20
+ "@mdn/browser-compat-data": "4.1.14",
21
21
  "browserslist": "^4.17.6",
22
22
  "debug": "^4.3.2",
23
23
  "semver": "^7.3.5"
24
24
  },
25
25
  "devDependencies": {
26
- "@wordpress/browserslist-config": "4.1.0",
27
- "eslint": "7.32.0",
26
+ "@wordpress/browserslist-config": "4.1.2",
28
27
  "eslint-plugin-es": "4.1.0",
29
28
  "jest": "27.3.1"
30
29
  },