Skip to content
Permalink

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: kaelzhang/node-ignore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.2.0
Choose a base ref
...
head repository: kaelzhang/node-ignore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.2.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 10, 2022

  1. #76: add test case

    kaelzhang committed Jan 10, 2022
    Copy the full SHA
    7032248 View commit details

Commits on Nov 27, 2022

  1. Copy the full SHA
    124f5a6 View commit details
Showing with 13 additions and 2 deletions.
  1. +1 −1 README.md
  2. +1 −1 package.json
  3. +11 −0 test/fixtures/cases.js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -136,7 +136,7 @@ Notice that a line starting with `'#'`(hash) is treated as a comment. Put a back

```js
ignore().add('#abc').ignores('#abc') // false
ignore().add('\#abc').ignores('#abc') // true
ignore().add('\\#abc').ignores('#abc') // true
```

`pattern` could either be a line of ignore pattern or a string of multiple ignore patterns, which means we could just `ignore().add()` the content of a ignore file:
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ignore",
"version": "5.2.0",
"version": "5.2.1",
"description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.",
"files": [
"legacy.js",
11 changes: 11 additions & 0 deletions test/fixtures/cases.js
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ function readPatterns (file) {
}

const cases = [
/////////////////////////////////////////////////////////////////////
// [
// 'Example',
// [
@@ -20,6 +21,16 @@ const cases = [
// 'a': 1
// }
// ],
/////////////////////////////////////////////////////////////////////
[
'#76 (invalid), comments with no heading whitespace',
[
'node_modules# comments'
],
{
'node_modules/a.js': 0
}
],
[
'#59 and more cases about range notation',
[