From d8dff28bc09f33bafbe58f26fbefa887cf867f59 Mon Sep 17 00:00:00 2001 From: Daniel Patrick Date: Fri, 30 Oct 2020 05:35:54 +0000 Subject: [PATCH] Install poetry modules in dev-dependencies --- src/common/installer/poetryInstaller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/installer/poetryInstaller.ts b/src/common/installer/poetryInstaller.ts index 4d7add7..34ac95a 100644 --- a/src/common/installer/poetryInstaller.ts +++ b/src/common/installer/poetryInstaller.ts @@ -61,7 +61,7 @@ export class PoetryInstaller extends ModuleInstaller implements IModuleInstaller protected async getExecutionInfo(moduleName: string, resource?: Uri): Promise { const execPath = this.configurationService.getSettings(resource).poetryPath return { - args: ['add', moduleName], + args: ['add', '--dev', moduleName], execPath } }