-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
Tweak esignore #16372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tweak esignore #16372
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
lib/internal/v8_prof_polyfill.js | ||
lib/punycode.js | ||
test/addons/??_*/ | ||
test/addons/??_* | ||
test/fixtures | ||
test/tmp*/ | ||
tools/eslint | ||
tools/icu | ||
node_modules | ||
benchmark/tmp/ | ||
benchmark/tmp | ||
doc/**/*.js |
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -541,7 +541,7 @@ echo Failed to create vc project files. | |||||||||||||||
goto exit | ||||||||||||||||
|
||||||||||||||||
:help | ||||||||||||||||
echo vcbuild.bat [debug/release] [msi] [test/test-ci/test-all/test-uv/test-internet/test-pummel/test-simple/test-message/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [clean] [noprojgen] [small-icu/full-icu/without-intl] [nobuild] [sign] [x86/x64] [vs2015/vs2017] [download-all] [enable-vtune] [lint/lint-ci] [no-NODE-OPTIONS] [link-module path-to-module] | ||||||||||||||||
echo vcbuild.bat [debug/release] [msi] [test/test-ci/test-all/test-uv/test-internet/test-pummel/test-simple/test-message/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [noprojgen] [small-icu/full-icu/without-intl] [nobuild] [sign] [x86/x64] [vs2015/vs2017] [download-all] [enable-vtune] [lint/lint-ci] [no-NODE-OPTIONS] [link-module path-to-module] | ||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So this is only used in a few places right? Lines 171 to 177 in 7a171fd
Agreed that it doesn't look like a user-facing thing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might have been once... Now it seems more like |
||||||||||||||||
echo Examples: | ||||||||||||||||
echo vcbuild.bat : builds release build | ||||||||||||||||
echo vcbuild.bat debug : builds debug build | ||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So how exactly does this make the ignoring more correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's an
ignore
thing, it builds the exclusion regex based on this line (requiring a terminal/
), then the directory itself is matched astest/addons/12_XFD
(with no trailing/
) so it passes and all it's children are enumerated (only they fail).So the line pre PR is equivalent to
test/addons/??_*/*
andtest/addons/??_*
make it exclude the directories and not even enumerate their content.