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: https://github.com/nodejs/node/pull/23180 Refs: https://github.com/nodejs/node/pull/23156 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
a4ffa0cb94
commit
5af1ac6b01
10
.gitignore
vendored
10
.gitignore
vendored
@ -15,6 +15,7 @@
|
|||||||
!.mailmap
|
!.mailmap
|
||||||
!.nycrc
|
!.nycrc
|
||||||
!.travis.yml
|
!.travis.yml
|
||||||
|
!.eslintrc.yaml
|
||||||
|
|
||||||
core
|
core
|
||||||
vgcore.*
|
vgcore.*
|
||||||
@ -38,14 +39,15 @@ icu_config.gypi
|
|||||||
.eslintcache
|
.eslintcache
|
||||||
node_trace.*.log
|
node_trace.*.log
|
||||||
coverage/
|
coverage/
|
||||||
|
!**/node_modules/**/coverage
|
||||||
|
|
||||||
/out
|
/out
|
||||||
|
|
||||||
# various stuff that VC++ produces/uses
|
# various stuff that VC++ produces/uses
|
||||||
Debug/
|
Debug/
|
||||||
!**/node_modules/debug/
|
!**/node_modules/debug/
|
||||||
!deps/v8/src/debug/
|
|
||||||
Release/
|
Release/
|
||||||
|
!**/node_modules/**/release
|
||||||
!doc/blog/**
|
!doc/blog/**
|
||||||
*.sln
|
*.sln
|
||||||
!nodemsi.sln
|
!nodemsi.sln
|
||||||
@ -64,7 +66,6 @@ ipch/
|
|||||||
*.VC.opendb
|
*.VC.opendb
|
||||||
.vs/
|
.vs/
|
||||||
.vscode/
|
.vscode/
|
||||||
/deps/v8/src/debug/obj
|
|
||||||
/*.exe
|
/*.exe
|
||||||
|
|
||||||
/config.mk
|
/config.mk
|
||||||
@ -98,6 +99,7 @@ deps/openssl/openssl.xml
|
|||||||
deps/openssl/openssl.target.mk
|
deps/openssl/openssl.target.mk
|
||||||
deps/zlib/zlib.target.mk
|
deps/zlib/zlib.target.mk
|
||||||
|
|
||||||
|
!deps/npm/node_modules
|
||||||
# not needed and causes issues for distro packagers
|
# not needed and causes issues for distro packagers
|
||||||
deps/npm/node_modules/.bin/
|
deps/npm/node_modules/.bin/
|
||||||
|
|
||||||
@ -130,8 +132,4 @@ deps/uv/docs/src/guide/
|
|||||||
# ignore VS compiler output unhandled by V8's .gitignore
|
# ignore VS compiler output unhandled by V8's .gitignore
|
||||||
deps/v8/gypfiles/Debug/
|
deps/v8/gypfiles/Debug/
|
||||||
deps/v8/gypfiles/Release/
|
deps/v8/gypfiles/Release/
|
||||||
deps/v8/src/Debug/
|
|
||||||
deps/v8/src/Release/
|
|
||||||
deps/v8/src/inspector/Debug/
|
|
||||||
deps/v8/src/inspector/Release/
|
|
||||||
deps/v8/third_party/eu-strip/
|
deps/v8/third_party/eu-strip/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user