@i2analyze/create-connector 2.0.3 → 2.0.4

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/index.js +2 -2
  2. package/package.json +34 -34
  3. package/CHANGELOG.md +0 -53
package/index.js CHANGED
@@ -12,8 +12,8 @@ var versions = thisVersion.split('.');
12
12
 
13
13
  var thisMajor = parseInt(versions[0], 10);
14
14
  var thisMinor = parseInt(versions[1], 10);
15
- var minimumMajorRequired = 14;
16
- var minimumMinorRequired = 17;
15
+ var minimumMajorRequired = 22;
16
+ var minimumMinorRequired = 0;
17
17
 
18
18
  if (thisMajor < minimumMajorRequired || (thisMajor === minimumMajorRequired && thisMinor < minimumMinorRequired)) {
19
19
  console.error(
package/package.json CHANGED
@@ -1,34 +1,34 @@
1
- {
2
- "name": "@i2analyze/create-connector",
3
- "version": "2.0.3",
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
- "bin": "index.js",
11
- "files": [
12
- "index.js",
13
- "main.js"
14
- ],
15
- "devDependencies": {
16
- "@i2analyze/i2connect-scripts": "2.1.3"
17
- },
18
- "dependencies": {
19
- "chalk": "^4.1.0",
20
- "commander": "^10.0.1",
21
- "cross-spawn": "^7.0.3",
22
- "file-uri-to-path": "^2.0.0",
23
- "file-url": "^3.0.0"
24
- },
25
- "engines": {
26
- "node": ">=14.17.0"
27
- },
28
- "volta": {
29
- "extends": "../../package.json"
30
- },
31
- "scripts": {
32
- "lint": "eslint ."
33
- }
34
- }
1
+ {
2
+ "name": "@i2analyze/create-connector",
3
+ "version": "2.0.4",
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
+ "bin": "index.js",
11
+ "files": [
12
+ "index.js",
13
+ "main.js"
14
+ ],
15
+ "devDependencies": {
16
+ "@i2analyze/i2connect-scripts": "2.1.4"
17
+ },
18
+ "dependencies": {
19
+ "chalk": "^4.1.0",
20
+ "commander": "^10.0.1",
21
+ "cross-spawn": "^7.0.3",
22
+ "file-uri-to-path": "^2.0.0",
23
+ "file-url": "^3.0.0"
24
+ },
25
+ "engines": {
26
+ "node": ">=22.0.0"
27
+ },
28
+ "volta": {
29
+ "extends": "../../package.json"
30
+ },
31
+ "scripts": {
32
+ "lint": "eslint ."
33
+ }
34
+ }
package/CHANGELOG.md DELETED
@@ -1,53 +0,0 @@
1
- # @i2analyze/create-connector
2
-
3
- ## 2.0.3
4
-
5
- ### Patch Changes
6
-
7
- - Update copyright text.
8
-
9
- ## 2.0.2
10
-
11
- ### Patch Changes
12
-
13
- - Bump dependencies
14
-
15
- ## 2.0.1
16
-
17
- ### Patch Changes
18
-
19
- - Updated copyright text
20
-
21
- ## 2.0.0
22
-
23
- ### Major Changes
24
-
25
- - BREAKING CHANGE: Set 14.17.0 as the minimum supported node.js version.
26
- - BREAKING CHANGE: Removed "--no-connectors" argument when creating new connector server
27
- - Rename package name from `@i2analyze/create-i2connect-server` to `@i2analyze/create-connector`.
28
-
29
- ## 1.0.3
30
-
31
- ### Patch Changes
32
-
33
- - Update copyright information.
34
- - Update urls to use correct github organization.
35
-
36
- ## 1.0.2
37
-
38
- ### Patch Changes
39
-
40
- - Update READMEs and homepages for public packages
41
-
42
- ## 1.0.1
43
-
44
- ### Patch Changes
45
-
46
- - Use a `^` dependency for i2connect-scripts.
47
- - Rename `sample` to `skeleton` in the template, and change casing to better reflect the nature of the files produced.
48
-
49
- ## 1.0.0
50
-
51
- ### Major Changes
52
-
53
- - Initial release.