Unnamed repository; edit this file 'description' to name the repository.
Merge #10925
10925: minor: Simplify `.vscodeignore` r=lnicola a=lnicola The quadruple negation we used to have here was quite confusing: ```gitignore ** !out out/** !out/src ``` Let's ignore everything and cherry-pick what we want to include. ~~And also include the extension sourcemap, just in case someone wants to debug the extension.~~ Co-authored-by: LaurenČ›iu Nicola <[email protected]>
bors[bot] 2021-12-04
parent 0c6208a · parent 65cdced · commit 71cbc79
-rw-r--r--editors/code/.vscodeignore14
1 files changed, 6 insertions, 8 deletions
diff --git a/editors/code/.vscodeignore b/editors/code/.vscodeignore
index efbcda6c76..ec3c10e025 100644
--- a/editors/code/.vscodeignore
+++ b/editors/code/.vscodeignore
@@ -1,15 +1,13 @@
**
+!icon.png
!language-configuration.json
-!out
-out/**
-!out/src
-!node_modules/d3/dist/d3.min.js
-!node_modules/@hpcc-js/wasm/dist/index.min.js
+!LICENSE
!node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm
+!node_modules/@hpcc-js/wasm/dist/index.min.js
!node_modules/d3-graphviz/build/d3-graphviz.min.js
-!package.json
+!node_modules/d3/dist/d3.min.js
+!out/main.js
!package-lock.json
+!package.json
!ra_syntax_tree.tmGrammar.json
-!icon.png
!README.md
-!LICENSE