From 69e7ad37ed0810de25a15b2bf2bcb232ccc74c94 Mon Sep 17 00:00:00 2001 From: David Francoeur Date: Thu, 18 Aug 2022 08:59:40 -0400 Subject: [PATCH] Keep node_modules/ as they are required at runtime This solution is temporary until we have a better approach. The initial goal of the trimming of the .vsix was to reduce size of the package. The archive contains a lot of useless stuff (especially dev dependencies). Ideally, we would have one of the following: - improved pipeline that compiles, but then package with only `yarn install --production` - webpack that puts everything in a standalone file --- .vscodeignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.vscodeignore b/.vscodeignore index 8c1d1a8..b9e3d90 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -9,7 +9,6 @@ **/tsconfig.json jest.config.js jest.e2e.config.js -node_modules/** out/it/** out/tests/** src/**