├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .verb.md ├── LICENSE ├── README.md ├── examples ├── async-events.js ├── async-middleware.js ├── async.js ├── copy.js ├── exclude.js ├── gitignore.js ├── middleware.js ├── promise-events.js ├── promise-middleware.js ├── promise.js ├── stream-events.js ├── stream-middleware.js ├── stream.js ├── sync-events.js ├── sync-middleware.js ├── sync.js └── track.js ├── index.js ├── lib ├── file.js ├── filter.js ├── handler.js ├── iterators.js ├── options.js ├── pattern.js ├── readers.js ├── symlinks.js └── utils.js ├── middleware ├── any.js ├── end.js ├── exclude.js ├── include.js ├── index.js ├── is.js ├── isnt.js ├── npm.js └── unignore.js ├── package.json ├── recurse.js └── test ├── cwd.js ├── dotfiles.js ├── fixtures ├── .dotfile ├── a │ ├── .dotfile │ ├── a.txt │ ├── b │ │ ├── .dotfile │ │ ├── bbb.js │ │ └── c │ │ │ ├── .dotfile │ │ │ └── d │ │ │ └── .dotfile │ └── bc │ │ └── e │ │ └── f │ │ └── fff.js ├── assets │ ├── css │ │ ├── dev.css │ │ ├── docs │ │ │ ├── a.css │ │ │ └── nested │ │ │ │ ├── b.css │ │ │ │ └── more │ │ │ │ └── c.css │ │ └── main.css │ ├── img │ │ └── logo.png │ └── js │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ ├── main.js │ │ └── site.js ├── b │ ├── a.js │ ├── b.js │ ├── c.js │ └── index.js ├── css │ ├── main.js │ ├── print.css │ └── styles.css ├── data │ ├── data.json │ └── data.yml ├── js │ ├── scripts.js │ └── scripts.min.js ├── less │ ├── a.less │ ├── b.less │ └── c.less ├── patterns.js ├── rules.js └── txt │ ├── a.txt │ ├── b.txt │ └── c.txt ├── gitignore.js ├── globstar.js ├── hanlder.js ├── root.js ├── slashes.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/.verb.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/README.md -------------------------------------------------------------------------------- /examples/async-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/async-events.js -------------------------------------------------------------------------------- /examples/async-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/async-middleware.js -------------------------------------------------------------------------------- /examples/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/async.js -------------------------------------------------------------------------------- /examples/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/copy.js -------------------------------------------------------------------------------- /examples/exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/exclude.js -------------------------------------------------------------------------------- /examples/gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/gitignore.js -------------------------------------------------------------------------------- /examples/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/middleware.js -------------------------------------------------------------------------------- /examples/promise-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/promise-events.js -------------------------------------------------------------------------------- /examples/promise-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/promise-middleware.js -------------------------------------------------------------------------------- /examples/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/promise.js -------------------------------------------------------------------------------- /examples/stream-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/stream-events.js -------------------------------------------------------------------------------- /examples/stream-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/stream-middleware.js -------------------------------------------------------------------------------- /examples/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/stream.js -------------------------------------------------------------------------------- /examples/sync-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/sync-events.js -------------------------------------------------------------------------------- /examples/sync-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/sync-middleware.js -------------------------------------------------------------------------------- /examples/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/sync.js -------------------------------------------------------------------------------- /examples/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/examples/track.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/index.js -------------------------------------------------------------------------------- /lib/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/file.js -------------------------------------------------------------------------------- /lib/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/filter.js -------------------------------------------------------------------------------- /lib/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/handler.js -------------------------------------------------------------------------------- /lib/iterators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/iterators.js -------------------------------------------------------------------------------- /lib/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/options.js -------------------------------------------------------------------------------- /lib/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/pattern.js -------------------------------------------------------------------------------- /lib/readers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/readers.js -------------------------------------------------------------------------------- /lib/symlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/symlinks.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/lib/utils.js -------------------------------------------------------------------------------- /middleware/any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/any.js -------------------------------------------------------------------------------- /middleware/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/end.js -------------------------------------------------------------------------------- /middleware/exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/exclude.js -------------------------------------------------------------------------------- /middleware/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/include.js -------------------------------------------------------------------------------- /middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/index.js -------------------------------------------------------------------------------- /middleware/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/is.js -------------------------------------------------------------------------------- /middleware/isnt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/isnt.js -------------------------------------------------------------------------------- /middleware/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/npm.js -------------------------------------------------------------------------------- /middleware/unignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/middleware/unignore.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/package.json -------------------------------------------------------------------------------- /recurse.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/cwd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/cwd.js -------------------------------------------------------------------------------- /test/dotfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/dotfiles.js -------------------------------------------------------------------------------- /test/fixtures/.dotfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/.dotfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/b/.dotfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/b/bbb.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/b/c/.dotfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/b/c/d/.dotfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a/bc/e/f/fff.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/css/dev.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/css/docs/a.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/css/docs/nested/b.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/css/docs/nested/more/c.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/img/logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/js/jquery.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/assets/js/site.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/b/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/b/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/b/c.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/b/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/css/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/css/print.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/css/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/data/data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/data/data.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/js/scripts.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/less/a.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/less/b.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/less/c.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/fixtures/patterns.js -------------------------------------------------------------------------------- /test/fixtures/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/fixtures/rules.js -------------------------------------------------------------------------------- /test/fixtures/txt/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/txt/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/txt/c.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/gitignore.js -------------------------------------------------------------------------------- /test/globstar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/globstar.js -------------------------------------------------------------------------------- /test/hanlder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/hanlder.js -------------------------------------------------------------------------------- /test/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/root.js -------------------------------------------------------------------------------- /test/slashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/slashes.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/glob-fs/HEAD/test/test.js --------------------------------------------------------------------------------