@ridedott/eslint-plugin 1.6.354 → 1.7.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ ## [1.7.1](https://github.com/ridedott/eslint-plugin/compare/v1.7.0...v1.7.1) (2022-08-02)
2
+
3
+ ### Chores
4
+
5
+ - **deps-dev:** bump cspell from 5.21.0 to 6.4.2
6
+ ([e09b567](https://github.com/ridedott/eslint-plugin/commit/e09b56738154af712e1117bf2c29f1dd78a39463))
7
+ - **deps-dev:** bump cspell from 6.4.2 to 6.5.0
8
+ ([d1a1585](https://github.com/ridedott/eslint-plugin/commit/d1a1585c10bf8dd48247cb178be9833abe75df90))
9
+ - **deps:** bump @typescript-eslint/utils from 5.31.0 to 5.32.0
10
+ ([a87814c](https://github.com/ridedott/eslint-plugin/commit/a87814ce68dad62cd6f40267130028f11cfcbc4a))
11
+
12
+ # [1.7.0](https://github.com/ridedott/eslint-plugin/compare/v1.6.355...v1.7.0) (2022-07-26)
13
+
14
+ ### Features
15
+
16
+ - update node to v14
17
+ ([2cf3c3b](https://github.com/ridedott/eslint-plugin/commit/2cf3c3b3daf6fd581819eee65ae18255f1b769f6))
18
+
19
+ ## [1.6.355](https://github.com/ridedott/eslint-plugin/compare/v1.6.354...v1.6.355) (2022-07-26)
20
+
21
+ ### Chores
22
+
23
+ - **deps:** bump @typescript-eslint/parser from 5.30.7 to 5.31.0
24
+ ([25cb82b](https://github.com/ridedott/eslint-plugin/commit/25cb82b927a649eac23b8141733112c3dcec0bfa))
25
+
1
26
  ## [1.6.354](https://github.com/ridedott/eslint-plugin/compare/v1.6.353...v1.6.354) (2022-07-26)
2
27
 
3
28
  ### Chores
package/README.md CHANGED
@@ -36,7 +36,7 @@ consume this package in your project.
36
36
 
37
37
  Minimal requirements to set up the project:
38
38
 
39
- - [Node.js](https://nodejs.org/en) v12, installation instructions can be found
39
+ - [Node.js](https://nodejs.org/en) v14, installation instructions can be found
40
40
  on the official website, a recommended installation option is to use
41
41
  [Node Version Manager](https://github.com/creationix/nvm#readme). It can be
42
42
  installed in a
package/package.json CHANGED
@@ -5,8 +5,8 @@
5
5
  }
6
6
  },
7
7
  "dependencies": {
8
- "@typescript-eslint/parser": "^5.30.7",
9
- "@typescript-eslint/utils": "^5.31.0"
8
+ "@typescript-eslint/parser": "^5.31.0",
9
+ "@typescript-eslint/utils": "^5.32.0"
10
10
  },
11
11
  "description": "ESLint plugin for custom rules.",
12
12
  "devDependencies": {
@@ -14,9 +14,9 @@
14
14
  "@commitlint/config-conventional": "^17.0.3",
15
15
  "@ridedott/eslint-config": "^2.13.12",
16
16
  "@types/jest": "^27.5.0",
17
- "@types/node": "^12.20.11",
17
+ "@types/node": "^14.18.22",
18
18
  "commitizen": "^4.2.5",
19
- "cspell": "^5.21.0",
19
+ "cspell": "^6.5.0",
20
20
  "eslint": "^7.32.0",
21
21
  "husky": "^8.0.1",
22
22
  "jest": "^26.6.3",
@@ -28,7 +28,7 @@
28
28
  "typescript": "^4.7.4"
29
29
  },
30
30
  "engines": {
31
- "node": ">= 12"
31
+ "node": ">= 14"
32
32
  },
33
33
  "files": [
34
34
  "lib",
@@ -77,5 +77,5 @@
77
77
  "test:watch": "jest --watch --verbose false",
78
78
  "types": "tsc --noEmit"
79
79
  },
80
- "version": "1.6.354"
80
+ "version": "1.7.1"
81
81
  }