Просмотр исходного кода

`.direnv` directory should not be packaged (#2464)

If somebody uses direnv tool, the `.direnv` directory is created,
that contains some data and especially some symlinks.
Symlinks makes `vsce` to fail zipping the built VSIX.

Generally `.direnv` should not be added to the resulting VSIX,
therefore I add it to .vscodeignore.
Wojciech Kordalski 10 месяцев назад
Родитель
Сommit
0ddfa4d0bf
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      .vscodeignore

+ 1 - 0
.vscodeignore

@@ -31,6 +31,7 @@ cline_docs/**
 coverage/**
 coverage/**
 locales/**
 locales/**
 benchmark/**
 benchmark/**
+.direnv/**
 
 
 # Ignore all webview-ui files except the build directory (https://github.com/microsoft/vscode-webview-ui-toolkit-samples/blob/main/frameworks/hello-world-react-cra/.vscodeignore)
 # Ignore all webview-ui files except the build directory (https://github.com/microsoft/vscode-webview-ui-toolkit-samples/blob/main/frameworks/hello-world-react-cra/.vscodeignore)
 webview-ui/src/**
 webview-ui/src/**