@asyncapi/cli 2.17.0 → 3.0.0
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/oclif.manifest.json +1 -1
- package/package.json +5 -2
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asyncapi/cli",
|
|
3
3
|
"description": "All in one CLI for all AsyncAPI tools",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"author": "@asyncapi",
|
|
6
6
|
"bin": {
|
|
7
7
|
"asyncapi": "./bin/run_bin"
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"@changesets/changelog-git": "^0.2.0",
|
|
24
24
|
"@clack/prompts": "^0.7.0",
|
|
25
25
|
"@oclif/core": "^4.2.9",
|
|
26
|
+
"@oclif/plugin-autocomplete": "^3.2.26",
|
|
26
27
|
"@smoya/asyncapi-adoption-metrics": "^2.4.9",
|
|
27
28
|
"@stoplight/spectral-cli": "6.9.0",
|
|
28
29
|
"chalk": "^4.1.0",
|
|
@@ -127,7 +128,8 @@
|
|
|
127
128
|
}
|
|
128
129
|
},
|
|
129
130
|
"plugins": [
|
|
130
|
-
"@oclif/plugin-warn-if-update-available"
|
|
131
|
+
"@oclif/plugin-warn-if-update-available",
|
|
132
|
+
"@oclif/plugin-autocomplete"
|
|
131
133
|
],
|
|
132
134
|
"warn-if-update-available": {
|
|
133
135
|
"frequency": 24,
|
|
@@ -164,6 +166,7 @@
|
|
|
164
166
|
"pretest": "npm run build",
|
|
165
167
|
"pretest:coverage": "npm run build",
|
|
166
168
|
"posttest": "rimraf ./test.asyncapi-cli",
|
|
169
|
+
"postinstall": "node ./scripts/enableAutoComplete.js",
|
|
167
170
|
"test": "npm run test:unit && npm run action:test",
|
|
168
171
|
"test:unit": "cross-env NODE_ENV=development TEST=1 CUSTOM_CONTEXT_FILENAME=\"test.asyncapi-cli\" CUSTOM_CONTEXT_FILE_LOCATION=\"\" nyc --extension .ts mocha --require ts-node/register --require test/helpers/init.js --reporter spec --timeout 100000 \"test/**/*.test.ts\"",
|
|
169
172
|
"test:one": "cross-env NODE_ENV=development TEST=1 CUSTOM_CONTEXT_FILENAME=\"test.asyncapi-cli\" CUSTOM_CONTEXT_FILE_LOCATION=\"\" nyc --extension .ts mocha --require ts-node/register --require test/helpers/init.js --reporter spec --timeout 100000",
|