@constructor-io/constructorio-connect-cli 1.0.1 → 1.0.3

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/README.md CHANGED
@@ -53,7 +53,6 @@ EXAMPLES
53
53
  $ constructorio-connect-cli deploy production
54
54
  ```
55
55
 
56
- _See code: [src/commands/deploy.ts](https://github.com/Constructor-io/constructorio-connect-cli/blob/v1.0.1/src/commands/deploy.ts)_
57
56
 
58
57
  ## `constructorio-connect-cli execute`
59
58
 
@@ -90,7 +89,6 @@ EXAMPLES
90
89
  $ constructorio-connect-cli execute --template-path=mapping/mapping.jsonata
91
90
  ```
92
91
 
93
- _See code: [src/commands/execute.ts](https://github.com/Constructor-io/constructorio-connect-cli/blob/v1.0.1/src/commands/execute.ts)_
94
92
 
95
93
  ## `constructorio-connect-cli help [COMMAND]`
96
94
 
@@ -110,7 +108,6 @@ DESCRIPTION
110
108
  Display help for constructorio-connect-cli.
111
109
  ```
112
110
 
113
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.21/src/commands/help.ts)_
114
111
 
115
112
  ## `constructorio-connect-cli init NAME`
116
113
 
@@ -132,7 +129,6 @@ EXAMPLES
132
129
  $ constructorio-connect-cli init new-repo-name
133
130
  ```
134
131
 
135
- _See code: [src/commands/init.ts](https://github.com/Constructor-io/constructorio-connect-cli/blob/v1.0.1/src/commands/init.ts)_
136
132
  <!-- commandsstop -->
137
133
 
138
134
  ## Development
@@ -11,11 +11,15 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "eslint": "^8.47.0",
14
- "eslint-plugin-prettier": "^5.1.2",
15
14
  "eslint-config-prettier": "^9.1.0",
15
+ "eslint-plugin-prettier": "^5.1.2",
16
16
  "prettier": "^3.1.1"
17
17
  },
18
18
  "keywords": [],
19
19
  "author": "",
20
- "license": "ISC"
20
+ "license": "ISC",
21
+ "dependencies": {
22
+ "@constructor-io/constructorio-connect-cli": "latest",
23
+ "dotenv": "^16.4.5"
24
+ }
21
25
  }
@@ -125,5 +125,5 @@
125
125
  ]
126
126
  }
127
127
  },
128
- "version": "1.0.1"
128
+ "version": "1.0.3"
129
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructor-io/constructorio-connect-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "CLI tool to enable users to interface with the Constructor Connect Ecosystem",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "dev": "bin/dev.js",
19
19
  "dev:debug": "node --inspect-brk bin/dev.js",
20
20
  "prod": "npm run build && bin/run.js",
21
- "generate-readme": "oclif readme && git add README.md",
21
+ "generate-readme": "ts-node scripts/generate-readme.ts",
22
22
  "prepare": "npm run build",
23
23
  "build": "tsc --project tsconfig.production.json",
24
24
  "prebuild": "shx rm -rf dist",
@@ -31,7 +31,7 @@
31
31
  "lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
32
32
  "license-check": "license-checker --production --onlyAllow 'Apache-2.0;BSD-3-Clause;BSD-2-Clause;ISC;MIT;0BSD'",
33
33
  "postpack": "shx rm -f oclif.manifest.json",
34
- "prepack": "npm run build && oclif manifest && oclif readme"
34
+ "prepack": "npm run build && npm run generate-readme && oclif manifest"
35
35
  },
36
36
  "oclif": {
37
37
  "dirname": "constructorio-connect-cli",