JSPM

ignorefs

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 23697
  • Score
    100M100P100Q136595F
  • License

Ignore common and custom patterns of the file system

Package Exports

  • ignorefs

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 (ignorefs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

IgnoreFS

Build Status NPM version Gittip donate button Flattr donate button PayPayl donate button

Ignore common and custom patterns of the file system

Install

Node, Browserify

  • Use: require('ignorefs')
  • Install: npm install --save ignorefs

Ender

  • Use: require('ignorefs')
  • Install: ender add ignorefs

Usage

var isIgnored = require('ignorefs').isIgnoredPath(path, {
    ignorePaths: false, // array of paths to ignore
    ignoreHiddenFiles: false, // whether or not we should ignore files that start with a dot
    ignoreCommonPatterns: true, // whether or not we should common patterns like "thumbs.db" etc, uses https://github.com/bevry/ignorepatterns
    ignoreCustomPatterns: false, // can be a regex that is tested against the basename of the file and the file's path
});
console.log(isIgnored);  // true or false

History

Discover the change history by heading on over to the History.md file.

Contribute

Discover how you can contribute by heading on over to the Contributing.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

No sponsors yet! Will you be the first?

Gittip donate button Flattr donate button PayPayl donate button

Contributors

No contributors yet! Will you be the first? Discover how you can contribute by heading on over to the Contributing.md file.

License

Licensed under the incredibly permissive MIT license

Copyright © 2012+ Bevry Pty Ltd us@bevry.me (http://bevry.me)
Copyright © 2011 Benjamin Lupton b@lupton.cc (http://balupton.com)