Skip to content

Releases: sindresorhus/find-up

v7.0.0

16 Nov 12:22
Compare
Choose a tag to compare

Breaking

Improvements

  • Accept URL for stopAt option ba19153

v6.3.0...v7.0.0

v6.3.0

08 Feb 07:21
Compare
Choose a tag to compare

v6.2.0...v6.3.0

v6.2.0

07 Oct 14:57
Compare
Choose a tag to compare

v6.1.0

26 Sep 11:02
Compare
Choose a tag to compare

v6.0.0

26 Aug 11:26
Compare
Choose a tag to compare

Breaking

  • Require Node.js 12.20 e93cfd2
  • This package is now pure ESM. Please read this.
  • Changed from a default export to named exports.
    • const findUp = require('find-up') => import {findUp} from 'find-up'
    • const findUpSync = require('find-up').sync => import {findUpSync} from 'find-up'
    • const findUpStop = require('find-up').stop => import {findUpStop} from 'find-up'
    • const pathExists = require('find-up').exists => import {pathExists} from 'find-up'
    • const pathExistsSync = require('find-up').sync.exists => import {pathExistsSync} from 'find-up'

v5.0.0...v6.0.0

v5.0.0

11 Aug 18:44
Compare
Choose a tag to compare

Breaking

v4.1.0...v5.0.0

v4.1.0

17 Jun 06:20
Compare
Choose a tag to compare
  • Add findUp.exists() and findUp.sync.exists() (#41) 56b779b

v4.0.0...v4.1.0

v4.0.0

12 May 15:31
Compare
Choose a tag to compare

Breaking:

  • Require Node.js 8 80fda88
  • Return undefined instead of null when the path cannot be found a7a9500
  • Add ability to specify if looking for file or directory (#40) da17a22
    It now only matches files by default, not also directories. Previously it would match either.

Enhancements:

v3.0.0...v4.0.0