@asyncapi/cli 3.1.1 → 3.2.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/README.md +4 -0
- package/assets/create-glee-app/templates/default/package-lock.json +1185 -676
- package/assets/create-glee-app/templates/tutorial/package-lock.json +1148 -554
- package/assets/create-template/templates/default/package-lock.json +51 -129
- package/lib/commands/validate.d.ts +2 -0
- package/lib/commands/validate.js +3 -1
- package/lib/core/flags/validate.flags.d.ts +2 -0
- package/lib/core/flags/validate.flags.js +9 -1
- package/lib/core/parser.d.ts +2 -0
- package/lib/core/parser.js +56 -2
- package/oclif.manifest.json +16 -1
- package/package.json +2 -13
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ CLI to work with your AsyncAPI files. Currently under development, we are workin
|
|
|
12
12
|
|
|
13
13
|
- [Installation](#installation)
|
|
14
14
|
- [Usage](#usage)
|
|
15
|
+
- [Architecture](#architecture)
|
|
15
16
|
- [Github Action](#github-action)
|
|
16
17
|
- [Contributing](#contributing)
|
|
17
18
|
* [Set up development environment](#set-up-development-environment)
|
|
@@ -26,6 +27,9 @@ Learn how to install the AsyncAPI CLI by following the instructions in the [inst
|
|
|
26
27
|
## Usage
|
|
27
28
|
The [usage guide](/docs/usage.md) provides information about different ways to use the CLI.
|
|
28
29
|
|
|
30
|
+
## Architecture
|
|
31
|
+
The [architecture guide](/docs/architecture.md) provides information about the architecture.
|
|
32
|
+
|
|
29
33
|
## Github Action
|
|
30
34
|
|
|
31
35
|
The AsyncAPI CLI can be used as a GitHub Action. You can find more information in the [GitHub Action guide](https://www.asyncapi.com/docs/tools/cli/github-action).
|