This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Typertext/node_modules/grunt/node_modules/findup-sync
2014-02-26 13:12:37 -06:00
..
lib initial commit 2014-02-26 13:12:37 -06:00
node_modules/lodash initial commit 2014-02-26 13:12:37 -06:00
test initial commit 2014-02-26 13:12:37 -06:00
.jshintrc initial commit 2014-02-26 13:12:37 -06:00
.npmignore initial commit 2014-02-26 13:12:37 -06:00
Gruntfile.js initial commit 2014-02-26 13:12:37 -06:00
LICENSE-MIT initial commit 2014-02-26 13:12:37 -06:00
package.json initial commit 2014-02-26 13:12:37 -06:00
README.md initial commit 2014-02-26 13:12:37 -06:00

findup-sync

Find the first file matching a given pattern in the current directory or the nearest ancestor directory.

Getting Started

Install the module with: npm install findup-sync

var findup = require('findup-sync');

// Start looking in the CWD.
var filepath1 = findup('{a,b}*.txt');

// Start looking somewhere else, and ignore case (probably a good idea).
var filepath2 = findup('{a,b}*.txt', {cwd: '/some/path', nocase: true});

Usage

findup(patternOrPatterns [, minimatchOptions])

patternOrPatterns

Type: String or Array
Default: none

One or more wildcard glob patterns. Or just filenames.

minimatchOptions

Type: Object
Default: {}

Options to be passed to minimatch.

Note that if you want to start in a different directory than the current working directory, specify a cwd property here.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

2013-03-08 - v0.1.2 - Updated dependencies. Fixed a Node 0.9.x bug. Updated unit tests to work cross-platform.
2012-11-15 - v0.1.1 - Now works without an options object.
2012-11-01 - v0.1.0 - Initial release.