-
Notifications
You must be signed in to change notification settings - Fork 9
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: npm/ignore-walk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.0.3
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: npm/ignore-walk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.4
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 14 commits
- 18 files changed
- 6 contributors
Commits on May 31, 2023
-
chore: bump @npmcli/template-oss from 4.14.1 to 4.15.1
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.14.1 to 4.15.1. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.14.1...v4.15.1) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 0b10581 - Browse repository at this point
Copy the full SHA 0b10581View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d44fc1 - Browse repository at this point
Copy the full SHA 2d44fc1View commit details
Commits on Jul 13, 2023
-
chore: bump @npmcli/template-oss from 4.15.1 to 4.17.0
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.15.1 to 4.17.0. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.15.1...v4.17.0) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for c3351d6 - Browse repository at this point
Copy the full SHA c3351d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0622fcc - Browse repository at this point
Copy the full SHA 0622fccView commit details
Commits on Jul 19, 2023
-
chore: bump @npmcli/template-oss from 4.17.0 to 4.18.0
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.17.0 to 4.18.0. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.17.0...v4.18.0) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for ee0f6a9 - Browse repository at this point
Copy the full SHA ee0f6a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f6eedb2 - Browse repository at this point
Copy the full SHA f6eedb2View commit details
Commits on Sep 13, 2023
-
chore: bump @npmcli/template-oss from 4.18.0 to 4.18.1
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.18.0 to 4.18.1. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.18.0...v4.18.1) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for b50bae3 - Browse repository at this point
Copy the full SHA b50bae3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9732505 - Browse repository at this point
Copy the full SHA 9732505View commit details
Commits on Sep 18, 2023
-
chore: bump @npmcli/template-oss from 4.18.1 to 4.19.0
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.18.1 to 4.19.0. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.18.1...v4.19.0) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 8d2b435 - Browse repository at this point
Copy the full SHA 8d2b435View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12a7c00 - Browse repository at this point
Copy the full SHA 12a7c00View commit details
Commits on Nov 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0bb0972 - Browse repository at this point
Copy the full SHA 0bb0972View commit details
Commits on Nov 29, 2023
-
fix: recursive directory ignore rules (#118)
Gets us closer to parity w/ the gitignore rules. Closes #9. --------- Co-authored-by: Christoph Thiede <christoph.thiede@outlook.de>
Configuration menu - View commit details
-
Copy full SHA for 493401a - Browse repository at this point
Copy the full SHA 493401aView commit details -
fix: handling of nested unignores (#119)
The fix in #116 was not quite complete. git does allow unignoring directories as long as its path to the root is unignored. This modifies the check to handle this case. The test case in `nested-ignores.js` was indeed wrong because it interpreted unignoring a specific file `!/h/c/d/hcd` as unignoring the directory `!/h/c/d`. I added new tests that specifically unignore a directory and therefore allow unignoring anything else within it. ## References Related to #116
Configuration menu - View commit details
-
Copy full SHA for b587cc3 - Browse repository at this point
Copy the full SHA b587cc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a61ab83 - Browse repository at this point
Copy the full SHA a61ab83View commit details
There are no files selected for viewing