From e2bb541bfec5305eac65764a290e00702ea2a3a4 Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Sun, 1 Dec 2024 16:43:48 +0500 Subject: [PATCH] fix: prompt context passing --- package-lock.json | 2 +- packages/core/lib/install.ts | 1 + packages/core/package.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) 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",