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 <lnicola@dend.ro>
This commit is contained in:
commit
71cbc79b0e
@ -1,15 +1,13 @@
|
||||
**
|
||||
!language-configuration.json
|
||||
!out
|
||||
out/**
|
||||
!out/src
|
||||
!node_modules/d3/dist/d3.min.js
|
||||
!node_modules/@hpcc-js/wasm/dist/index.min.js
|
||||
!node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm
|
||||
!node_modules/d3-graphviz/build/d3-graphviz.min.js
|
||||
!package.json
|
||||
!package-lock.json
|
||||
!ra_syntax_tree.tmGrammar.json
|
||||
!icon.png
|
||||
!README.md
|
||||
!language-configuration.json
|
||||
!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
|
||||
!node_modules/d3/dist/d3.min.js
|
||||
!out/main.js
|
||||
!package-lock.json
|
||||
!package.json
|
||||
!ra_syntax_tree.tmGrammar.json
|
||||
!README.md
|
||||
|
Loading…
Reference in New Issue
Block a user