Skip to content

Commit de4d688

Browse files
refacktargos
authored andcommitted
build: cleanup in .gitignore
* explicitly unignore files that we track. The following are not created anymore (only as subdirs of v8/gypfiles) /deps/v8/src/debug/obj deps/v8/src/Debug/ deps/v8/src/Release/ deps/v8/src/inspector/Debug/ deps/v8/src/inspector/Release/ PR-URL: #23180 Refs: #23156 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 1010ef5 commit de4d688

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.gitignore

+4-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
!.mailmap
1616
!.nycrc
1717
!.travis.yml
18+
!.eslintrc.yaml
1819

1920
core
2021
vgcore.*
@@ -38,14 +39,15 @@ icu_config.gypi
3839
.eslintcache
3940
node_trace.*.log
4041
coverage/
42+
!**/node_modules/**/coverage
4143

4244
/out
4345

4446
# various stuff that VC++ produces/uses
4547
Debug/
4648
!**/node_modules/debug/
47-
!deps/v8/src/debug/
4849
Release/
50+
!**/node_modules/**/release
4951
!doc/blog/**
5052
*.sln
5153
!nodemsi.sln
@@ -64,7 +66,6 @@ ipch/
6466
*.VC.opendb
6567
.vs/
6668
.vscode/
67-
/deps/v8/src/debug/obj
6869
/*.exe
6970

7071
/config.mk
@@ -98,6 +99,7 @@ deps/openssl/openssl.xml
9899
deps/openssl/openssl.target.mk
99100
deps/zlib/zlib.target.mk
100101

102+
!deps/npm/node_modules
101103
# not needed and causes issues for distro packagers
102104
deps/npm/node_modules/.bin/
103105

@@ -130,8 +132,4 @@ deps/uv/docs/src/guide/
130132
# ignore VS compiler output unhandled by V8's .gitignore
131133
deps/v8/gypfiles/Debug/
132134
deps/v8/gypfiles/Release/
133-
deps/v8/src/Debug/
134-
deps/v8/src/Release/
135-
deps/v8/src/inspector/Debug/
136-
deps/v8/src/inspector/Release/
137135
deps/v8/third_party/eu-strip/

0 commit comments

Comments
 (0)