@jarsec/eslint-config 2.0.2 → 3.1.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 +25 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @jarsec/eslint-config
2
2
 
3
+ ## 3.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 8482cba: Revert standard-with-typescript configuration
8
+
9
+ ### Patch Changes
10
+
11
+ - f13defd: fix(deps): update dependencies
12
+
13
+ ## 3.0.0
14
+
15
+ ### Major Changes
16
+
17
+ - d5fcb37: Base configuration around standard-with-typescript instead of XO
18
+
19
+ XO requires your project to be ESM, StandardJS does not.
20
+
21
+ ### Patch Changes
22
+
23
+ - 0335f6b: chore(deps): update peer dependency eslint to v8.49.0
24
+ - 013f9dc: fix(deps): update dependency @rushstack/eslint-patch to v1.4.0
25
+ - b310726: fix(deps): update @typescript-eslint dependencies to v6.5.0
26
+ - d63383e: fix(deps): update @typescript-eslint dependencies to v6.7.0
27
+
3
28
  ## 2.0.2
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarsec/eslint-config",
3
- "version": "2.0.2",
3
+ "version": "3.1.0",
4
4
  "description": "jsec's eslint configurations",
5
5
  "author": "Jarrod Seccombe <jarrod.seccombe@icloud.com>",
6
6
  "main": "index.js",
@@ -9,24 +9,24 @@
9
9
  "access": "public"
10
10
  },
11
11
  "dependencies": {
12
- "@rushstack/eslint-patch": "1.3.3",
13
- "@typescript-eslint/eslint-plugin": "6.4.0",
14
- "@typescript-eslint/parser": "6.4.0",
12
+ "@rushstack/eslint-patch": "1.5.0",
13
+ "@typescript-eslint/eslint-plugin": "6.7.3",
14
+ "@typescript-eslint/parser": "6.7.3",
15
15
  "eslint-config-prettier": "9.0.0",
16
16
  "eslint-config-xo": "0.43.1",
17
17
  "eslint-config-xo-typescript": "1.0.1",
18
- "eslint-import-resolver-typescript": "3.6.0",
18
+ "eslint-import-resolver-typescript": "3.6.1",
19
19
  "eslint-plugin-import": "2.28.1",
20
20
  "eslint-plugin-prettier": "5.0.0",
21
21
  "eslint-plugin-simple-import-sort": "10.0.0"
22
22
  },
23
23
  "devDependencies": {
24
- "@types/node": "20.5.1",
25
- "eslint": "8.47.0",
26
- "typescript": "5.1.6"
24
+ "@types/node": "20.7.0",
25
+ "eslint": "8.50.0",
26
+ "typescript": "5.2.2"
27
27
  },
28
28
  "peerDependencies": {
29
- "eslint": "8.47.0",
30
- "typescript": "5.1.6"
29
+ "eslint": "8.50.0",
30
+ "typescript": "5.2.2"
31
31
  }
32
32
  }