diff options
author | Refael Ackermann <refack@gmail.com> | 2018-09-29 15:31:04 -0400 |
---|---|---|
committer | Michaƫl Zasso <targos@protonmail.com> | 2018-10-07 12:11:34 +0200 |
commit | de4d688d1f84b402501f3456b855753dd1dd4aad (patch) | |
tree | 7df774ddc752ce5cc7f1a51cb03a8dd4927dd926 /.gitignore | |
parent | 1010ef5df79c6448b5ae69c26b56f3cda8a9d826 (diff) | |
download | node-new-de4d688d1f84b402501f3456b855753dd1dd4aad.tar.gz |
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>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore index d60603514c..f652a2c74c 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ !.mailmap !.nycrc !.travis.yml +!.eslintrc.yaml core vgcore.* @@ -38,14 +39,15 @@ icu_config.gypi .eslintcache node_trace.*.log coverage/ +!**/node_modules/**/coverage /out # various stuff that VC++ produces/uses Debug/ !**/node_modules/debug/ -!deps/v8/src/debug/ Release/ +!**/node_modules/**/release !doc/blog/** *.sln !nodemsi.sln @@ -64,7 +66,6 @@ ipch/ *.VC.opendb .vs/ .vscode/ -/deps/v8/src/debug/obj /*.exe /config.mk @@ -98,6 +99,7 @@ deps/openssl/openssl.xml deps/openssl/openssl.target.mk deps/zlib/zlib.target.mk +!deps/npm/node_modules # not needed and causes issues for distro packagers deps/npm/node_modules/.bin/ @@ -130,8 +132,4 @@ deps/uv/docs/src/guide/ # ignore VS compiler output unhandled by V8's .gitignore deps/v8/gypfiles/Debug/ 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/ |