You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Forrest L Norvell f166cdecf1 deps: upgrade npm to 2.7.4 10 years ago
..
example npm: upgrade to 1.1.41 12 years ago
test npm: Update to v1.4.23 10 years ago
.npmignore Upgrade npm to 1.1.14 13 years ago
LICENSE npm: Update to v1.4.23 10 years ago
README.md Upgrade npm to 1.1.14 13 years ago
ignore.js npm: Update to v1.4.23 10 years ago
package.json deps: upgrade npm to 2.7.4 10 years ago

README.md

fstream-ignore

A fstream DirReader that filters out files that match globs in .ignore files throughout the tree, like how git ignores files based on a .gitignore file.

Here's an example:

var Ignore = require("fstream-ignore")
Ignore({ path: __dirname
       , ignoreFiles: [".ignore", ".gitignore"]
       })
  .on("child", function (c) {
    console.error(c.path.substr(c.root.path.length + 1))
  })
  .pipe(tar.Pack())
  .pipe(fs.createWriteStream("foo.tar"))

This will tar up the files in __dirname into foo.tar, ignoring anything matched by the globs in any .iginore or .gitignore file.