diff --git a/package-lock.json b/package-lock.json index e17f538..45260df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20268,7 +20268,7 @@ }, "packages/core": { "name": "@streamyx/core", - "version": "2.3.1", + "version": "2.3.2", "license": "AGPL-3.0", "dependencies": { "@streamyx/loader": "^0.0.3", diff --git a/packages/core/lib/install.ts b/packages/core/lib/install.ts index c5c3055..a4e856b 100644 --- a/packages/core/lib/install.ts +++ b/packages/core/lib/install.ts @@ -5,6 +5,7 @@ import { Http } from './http'; import { execUrlPatterns, extendEpisodes, safeEval, sanitizeString } from './utils'; import { logger } from './log'; import { PluginInstance } from './service'; +import { prompt } from './prompt'; export const install = async (pluginPath: string): Promise => { const pluginName = path.parse(pluginPath).name; diff --git a/packages/core/package.json b/packages/core/package.json index 3139158..11d02cf 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@streamyx/core", - "version": "2.3.1", + "version": "2.3.2", "author": "Vitaly Gashkov ", "description": "Core modules for Streamyx", "license": "AGPL-3.0",