@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -6
  2. package/index.js +3 -2
  3. package/package.json +28 -28
package/CHANGELOG.md CHANGED
@@ -1,26 +1,34 @@
1
1
  # @i2analyze/eslint-config-i2connect
2
2
 
3
- ## 2.0.0-next.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
- - d7f4283: BREAKING CHANGE: Remove no-unused-vars suppression as we no longer use decorators.
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
- - cc9d526: Update copyright information.
14
- - ed28e8e: Update urls to use correct github organization.
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
- - 927589d: Update READMEs and homepages for public packages
28
+ - Update READMEs and homepages for public packages
21
29
 
22
30
  ## 1.0.0
23
31
 
24
32
  ### Major Changes
25
33
 
26
- - 79b1db9: Initial release.
34
+ - Initial release.
package/index.js CHANGED
@@ -1,5 +1,6 @@
1
- /*!
2
- * Copyright 2022- N. Harris Computer Corporation. All rights reserved
1
+ /*
2
+ * i2, i2 Group, the i2 Group logo, and i2group.com are trademarks of N.Harris Computer Corporation.
3
+ * © N.Harris Computer Corporation (2022)
3
4
  * SPDX-License-Identifier: MIT
4
5
  */
5
6
 
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "name": "@i2analyze/eslint-config-i2connect",
3
- "version": "2.0.0-next.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": "^4.2.0",
12
- "@typescript-eslint/parser": "^4.0.0",
13
- "eslint-config-prettier": "^8.3.0",
14
- "eslint": "^7.17.0"
15
- },
16
- "scripts": {
17
- "lint": "eslint ."
18
- },
19
- "engines": {
20
- "node": ">= 14"
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
+ }