Releases: sindresorhus/find-up
Releases · sindresorhus/find-up
v7.0.0
v6.3.0
v6.2.0
- Add
findUpMultiple()
method (#56) 8f80ac7
v6.1.0
v6.0.0
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'