@i2analyze/eslint-config-i2connect 2.0.0-next.0 → 2.0.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 +14 -6
- package/index.js +3 -2
- package/package.json +28 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,34 @@
|
|
|
1
1
|
# @i2analyze/eslint-config-i2connect
|
|
2
2
|
|
|
3
|
-
## 2.0.
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated copyright text
|
|
8
|
+
|
|
9
|
+
## 2.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
|
6
12
|
|
|
7
|
-
-
|
|
13
|
+
- BREAKING CHANGE: Set 14.17.0 as the minimum supported node.js version.
|
|
14
|
+
- BREAKING CHANGE: Remove no-unused-vars suppression as we no longer use decorators.
|
|
15
|
+
- BREAKING CHANGE: Update eslint dependency in i2connect-scripts to version 8, see [here](https://eslint.org/docs/8.0.0/user-guide/migrating-to-8.0.0) for the eslint migration guide.
|
|
8
16
|
|
|
9
17
|
## 1.0.2
|
|
10
18
|
|
|
11
19
|
### Patch Changes
|
|
12
20
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
21
|
+
- Update copyright information.
|
|
22
|
+
- Update urls to use correct github organization.
|
|
15
23
|
|
|
16
24
|
## 1.0.1
|
|
17
25
|
|
|
18
26
|
### Patch Changes
|
|
19
27
|
|
|
20
|
-
-
|
|
28
|
+
- Update READMEs and homepages for public packages
|
|
21
29
|
|
|
22
30
|
## 1.0.0
|
|
23
31
|
|
|
24
32
|
### Major Changes
|
|
25
33
|
|
|
26
|
-
-
|
|
34
|
+
- Initial release.
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@i2analyze/eslint-config-i2connect",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public",
|
|
7
|
-
"registry": "https://registry.npmjs.org/"
|
|
8
|
-
},
|
|
9
|
-
"homepage": "https://github.com/i2group/analyze-connect-node-sdk",
|
|
10
|
-
"peerDependencies": {
|
|
11
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
12
|
-
"@typescript-eslint/parser": "^
|
|
13
|
-
"eslint-config-prettier": "^8.
|
|
14
|
-
"eslint": "^
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"lint": "eslint ."
|
|
18
|
-
},
|
|
19
|
-
"engines": {
|
|
20
|
-
"node": ">=
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"index.js"
|
|
24
|
-
],
|
|
25
|
-
"volta": {
|
|
26
|
-
"extends": "../../package.json"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@i2analyze/eslint-config-i2connect",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public",
|
|
7
|
+
"registry": "https://registry.npmjs.org/"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/i2group/analyze-connect-node-sdk",
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
12
|
+
"@typescript-eslint/parser": "^5.21.0",
|
|
13
|
+
"eslint-config-prettier": "^8.5.0",
|
|
14
|
+
"eslint": "^8.14.0"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"lint": "eslint ."
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=14.17.0"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"index.js"
|
|
24
|
+
],
|
|
25
|
+
"volta": {
|
|
26
|
+
"extends": "../../package.json"
|
|
27
|
+
}
|
|
28
|
+
}
|