From fac32facffbba1d0a66829c82f9fa4c7667aa9ff Mon Sep 17 00:00:00 2001 From: Lukasz Gornicki Date: Fri, 22 May 2020 13:15:55 +0200 Subject: [PATCH] feat: move configuration to package.json (#32) --- .tp-config.json | 16 ---------------- package.json | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 16 deletions(-) delete mode 100644 .tp-config.json diff --git a/.tp-config.json b/.tp-config.json deleted file mode 100644 index 3a365ceb0..000000000 --- a/.tp-config.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "parameters": { - "sidebarOrganization": { - "description": "Defines how the sidebar should be organized. Set its value to 'byTags' to categorize operations by tags.", - "required": false - }, - "baseHref": { - "description": "Sets the base URL for links and forms.", - "required": false - } - }, - "generator": ">=0.41.0 <2.0.0", - "filters": [ - "@asyncapi/generator-filters" - ] -} diff --git a/package.json b/package.json index 2307ade04..a5601bf35 100644 --- a/package.json +++ b/package.json @@ -58,5 +58,22 @@ "@semantic-release/npm", "@semantic-release/github" ] + }, + "generator": { + "parameters": { + "sidebarOrganization": { + "description": "Defines how the sidebar should be organized. Set its value to 'byTags' to categorize operations by tags.", + "required": false + }, + "baseHref": { + "description": "Sets the base URL for links and forms.", + "required": false + } + }, + "generator": ">=0.50.0 <2.0.0", + "filters": [ + "@asyncapi/generator-filters" + ] } + }