-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: release 1.0.0 without CLI (#134)
- Loading branch information
1 parent
a46a63c
commit f2ee74e
Showing
9 changed files
with
18 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,6 @@ | |
"name": "@asyncapi/converter", | ||
"version": "0.11.0", | ||
"description": "Convert AsyncAPI documents from older to newer versions.", | ||
"bin": { | ||
"asyncapi-converter": "cli.js" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
|
@@ -25,7 +22,6 @@ | |
], | ||
"files": [ | ||
"/lib", | ||
"cli.js", | ||
"./README.md", | ||
"./LICENSE" | ||
], | ||
|
@@ -43,7 +39,6 @@ | |
"author": "Fran Mendez <[email protected]> (fmvilas.com)", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"commander": "^8.3.0", | ||
"js-yaml": "^3.14.1" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
export type AsyncAPIDocument = { asyncapi: string } & Record<string, any>; | ||
export type ConvertVersion = '1.1.0' | '1.2.0' | '2.0.0-rc1' | '2.0.0-rc2' | '2.0.0' | '2.1.0' | '2.2.0' | '2.3.0' | '2.4.0'; | ||
export interface ConvertOptions { | ||
id?: string; | ||
} | ||
export interface ConvertOptions {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,7 +127,6 @@ components: | |
enum: | ||
- |+ | ||
id: 'urn:gitter.streaming.api' | ||
channels: | ||
/: | ||
publish: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters