Releases: sindresorhus/pkg-dir
Releases · sindresorhus/pkg-dir
v8.0.0
v7.0.0
v6.0.1
v6.0.0
Breaking
- Require Node.js 12.20 (#14) 198c9fe aeafb93
- This package is now pure ESM. Please read this.
- Changed from a default export to named exports and the export names changed too.
- The
cwd
argument is now part of an options-object.
-const pkgDir = require('pkg-dir');
+import {packageDirectory} from 'pkg-dir';
-await pkgDir('/Users/unicorn/foo');
+await packageDirectory({cwd: '/Users/unicorn/foo'});