Skip to content

Commit 71cbc79

Browse files
bors[bot]lnicola
andauthored
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]>
2 parents 0c6208a + 65cdced commit 71cbc79

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

editors/code/.vscodeignore

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
**
2+
!icon.png
23
!language-configuration.json
3-
!out
4-
out/**
5-
!out/src
6-
!node_modules/d3/dist/d3.min.js
7-
!node_modules/@hpcc-js/wasm/dist/index.min.js
4+
!LICENSE
85
!node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm
6+
!node_modules/@hpcc-js/wasm/dist/index.min.js
97
!node_modules/d3-graphviz/build/d3-graphviz.min.js
10-
!package.json
8+
!node_modules/d3/dist/d3.min.js
9+
!out/main.js
1110
!package-lock.json
11+
!package.json
1212
!ra_syntax_tree.tmGrammar.json
13-
!icon.png
1413
!README.md
15-
!LICENSE

0 commit comments

Comments
 (0)