From d04396e631720b30d3b103cdd2bb39f43ebba684 Mon Sep 17 00:00:00 2001 From: Cam Wiegert Date: Fri, 28 Jun 2019 14:23:28 -0500 Subject: [PATCH] chore(scripts): add installVariables to docs-json output (#3079) --- scripts/docs-json/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/docs-json/index.ts b/scripts/docs-json/index.ts index decb3b6c7..8af0fc98a 100644 --- a/scripts/docs-json/index.ts +++ b/scripts/docs-json/index.ts @@ -10,6 +10,7 @@ interface Plugin { platforms: string[]; usage: string; repo: string; + installVariables: string[]; cordovaPlugin: { name: string; }; @@ -56,6 +57,7 @@ function processPlugin(pluginModule): Plugin { usage, platforms: decorator.platforms, repo: decorator.repo, + installVariables: decorator.installVariables, cordovaPlugin: { name: decorator.plugin }