From 4e68a82743e0a44bdab1695a2087146e1f47580e Mon Sep 17 00:00:00 2001 From: Jentsch Date: Tue, 8 Oct 2024 09:50:41 +0000 Subject: [PATCH] Fix exclusion of project files `vsce ls --yarn` shows now: - CHANGELOG.md - images/smooth-spiral.png - language-configuration.json - LICENSE.md - package.json - README.md - syntaxes/Scala.tmLanguage.json Before it included also: - .github/workflows/cla.yml - .github/workflows/continuous-integration.yml - .github/workflows/deploy.yml - project/scripts/check-cla.sh - syntaxes/.gitkeep --- .vscodeignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscodeignore b/.vscodeignore index b04aab4..f915fb2 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -4,5 +4,6 @@ tests/** src/** node_modules -.gitkeep -scripts \ No newline at end of file +**/.gitkeep +project/ +.github/