Draft
Conversation
Collaborator
Collaborator
Member
|
@louiellan Thanks for the PR! Can you please rebase? |
46be19d to
20a16e8
Compare
This comment has been minimized.
This comment has been minimized.
avivkeller
approved these changes
Jan 4, 2026
This comment has been minimized.
This comment has been minimized.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #59478 +/- ##
==========================================
- Coverage 88.53% 88.53% -0.01%
==========================================
Files 704 704
Lines 208759 208760 +1
Branches 40277 40272 -5
==========================================
- Hits 184825 184819 -6
- Misses 15934 15943 +9
+ Partials 8000 7998 -2
🚀 New features to boost your workflow:
|
Contributor
Failed to start CI⚠ Commits were pushed since the last approving review: ⚠ - lib: support glob on `--watch-path` ✘ Refusing to run CI on potentially unsafe PRhttps://github.com/nodejs/node/actions/runs/20876405993 |
MoLow
approved these changes
Jan 21, 2026
Collaborator
Collaborator
Collaborator
Collaborator
Commit Queue failed- Loading data for nodejs/node/pull/59478 ✔ Done loading data for nodejs/node/pull/59478 ----------------------------------- PR info ------------------------------------ Title lib: support glob on `--watch-path` (#59478) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch louiellan:watch-path-glob -> nodejs:main Labels fs, semver-major, author ready, needs-ci Commits 1 - lib: support glob on `--watch-path` Committers 1 - louiellan <louie.lou.llaneta@gmail.com> PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Aviv Keller <me@aviv.sh> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Aviv Keller <me@aviv.sh> -------------------------------------------------------------------------------- ℹ This PR was created on Fri, 15 Aug 2025 04:43:46 GMT ✔ Approvals: 2 ✔ - Moshe Atlow (@MoLow): https://github.com/nodejs/node/pull/59478#pullrequestreview-3687694822 ✔ - Aviv Keller (@avivkeller): https://github.com/nodejs/node/pull/59478#pullrequestreview-3602246900 ✘ semver-major requires at least 2 TSC approvals ✔ Last GitHub CI successful ℹ Last Full PR CI on 2026-01-21T22:11:50Z: https://ci.nodejs.org/job/node-test-pull-request/70952/ - Querying data for job/node-test-pull-request/70952/ ✔ Build data downloaded ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/21242759144 |
Author
|
Just added my email ;> |
Collaborator
Commit Queue failed- Loading data for nodejs/node/pull/59478 ✔ Done loading data for nodejs/node/pull/59478 ----------------------------------- PR info ------------------------------------ Title lib: support glob on `--watch-path` (#59478) Author Louie Llaneta <louie.lou.llaneta@gmail.com> (@louiellan, first-time contributor) Branch louiellan:watch-path-glob -> nodejs:main Labels fs, semver-major, author ready, needs-ci Commits 1 - lib: support glob on `--watch-path` Committers 1 - louiellan <louie.lou.llaneta@gmail.com> PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Aviv Keller <me@aviv.sh> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/59478 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Aviv Keller <me@aviv.sh> -------------------------------------------------------------------------------- ℹ This PR was created on Fri, 15 Aug 2025 04:43:46 GMT ✔ Approvals: 2 ✔ - Moshe Atlow (@MoLow): https://github.com/nodejs/node/pull/59478#pullrequestreview-3687694822 ✔ - Aviv Keller (@avivkeller): https://github.com/nodejs/node/pull/59478#pullrequestreview-3602246900 ✘ semver-major requires at least 2 TSC approvals ✔ Last GitHub CI successful ℹ Last Full PR CI on 2026-01-22T09:17:00Z: https://ci.nodejs.org/job/node-test-pull-request/70952/ - Querying data for job/node-test-pull-request/70952/ ✔ Build data downloaded ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/21248171608 |
Member
|
@nodejs/tsc please take a look and approve as this is semver major |
RafaelGSS
reviewed
Jan 22, 2026
Member
RafaelGSS
left a comment
There was a problem hiding this comment.
We should include a permission model test for glob when using --permission and --watch-path
Author
|
So I was creating the permission model tests, and came across this bug (I guess), might have to resolve this first |
393535f to
77302eb
Compare
Signed-off-by: louiellan <louie.lou.llaneta@gmail.com>
Signed-off-by: louiellan <louie.lou.llaneta@gmail.com>
Signed-off-by: louiellan <louie.lou.llaneta@gmail.com>
77302eb to
be98948
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #45182
Closes #59345
This allows glob patterns to be included in the
--watch-pathoption but it does introduce breaking change since there might be instances where developers might have used glob characters when using--watch-path(e.g.,file[1].js)An alternative, non-breaking change would be to add a cli option
--watch-patternin which the PR is here #59345