JSPM

  • Created
  • Published
  • Downloads 88584483
  • Score
    100M100P100Q258575F
  • License MIT

Ignore is a manager and filter for .gitignore rules.

Package Exports

  • ignore
  • ignore/ignore

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ignore) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Build Status Windows Build Status npm module downloads per month

ignore

ignore is a manager and filter which implemented in pure JavaScript according to the .gitignore spec.

Pay attention that minimatch does not work in the gitignore way. To filter filenames according to .gitignore file, I recommend this module.

Tested on

  • Linux + Node: 0.8 - 5.x
  • Windows + Node: 0.10 - 5.x, node < 0.10 is not tested due to the lack of support of appveyor.

Usage

const ignore = require('ignore')
var ig = ignore().add(['.abc/*', '!.abc/d/'])

Filter the given paths

var paths = [
  '.abc/a.js',    // filtered out
  '.abc/d/e.js'   // included
]

ig.filter(paths)  // ['.abc/d/e.js']

As the filter function

paths.filter(ig.createFilter()); // ['.abc/d/e.js']

Why another ignore?

  1. ignore is a standalone module, and is much simpler so that it could easy work with other programs, unlike isaacs's fstream-ignore which must work with the modules of the fstream family.

  2. ignore only contains utility methods to filter paths according to the specified ignore rules, so

  • ignore never try to find out ignore rules by traversing directories or fetching from git configurations.

  • ignore don't cares about sub-modules of git projects.

  1. Exactly according to gitignore man page, fixes some known matching issues of fstream-ignore, such as:
    • '/*.js' should only match 'a.js', but not 'abc/a.js'.
    • '**/foo' should match 'foo' anywhere.
  • prevent re-including a file if a parent directory of that file is excluded.
  • handle trailing whitespaces.

Methods

.add(pattern)

.add(patterns)

  • pattern String Ignore pattern.
  • patterns Array.<pattern> Array of ignore patterns.

Adds a rule or several rules to the current manager.

Returns this

Notice that a line starting with '#'(hash) is treated as a comment. Put a backslash ('\') in front of the first hash for patterns that begin with a hash, if you want to ignore a file with a hash at the beginning of the filename.

ignore().add('#abc').filter(['#abc'])   // ['#abc']
ignore().add('\#abc').filter(['#abc'])  // []

.addIgnoreFile(path)

REMOVED in 3.x for now.

To upgrade ignore@2.x up to 3.x, use

const fs = require('fs')

ignore().add(fs.readFileSync(filename))

instead.

.filter(paths)

Filters the given array of pathnames, and returns the filtered array.

  • paths Array.<path> The array of paths to be filtered.

NOTICE that each path here should be a relative path to the root of your repository. Suppose the dir structure is:

/path/to/your/repo
    |-- a
    |   |-- a.js
    |
    |-- .b
    |
    |-- .c
         |-- .DS_store

Then the paths might be like this:

[
  'a/a.js'
  '.b',
  '.c/.DS_store'
]

Usually, you could use glob with option.mark = true to fetch the structure of the current directory:

const glob = require('glob')

glob('**', {
  // Adds a / character to directory matches.
  mark: true
}, (err, files) => {
  if (err) {
    return console.error(err)
  }

  var filtered = ignore().add(patterns).filter(files)
  console.log(filtered)
})

.createFilter()

Creates a filter function which could filter an array of paths with Array.prototype.filter.

Returns function(path) the filter function.