Clean up the oopsie. Rebuild the blank exercises.

This commit is contained in:
Michael Frank
2021-05-09 00:39:21 +12:00
parent b984cb4c6f
commit d28d80c46f
1565 changed files with 27186 additions and 199003 deletions
+13 -10
View File
@@ -1,12 +1,12 @@
# pkg-dir [![Build Status](https://travis-ci.org/sindresorhus/pkg-dir.svg?branch=master)](https://travis-ci.org/sindresorhus/pkg-dir)
> Find the root directory of a npm package
> Find the root directory of a Node.js project or npm package
## Install
```
$ npm install --save pkg-dir
$ npm install pkg-dir
```
@@ -25,12 +25,14 @@ $ npm install --save pkg-dir
```js
// example.js
var pkgDir = require('pkg-dir');
const pkgDir = require('pkg-dir');
pkgDir(__dirname).then(function (rootPath) {
console.log(rootPath);
(async () => {
const rootDir = await pkgDir(__dirname);
console.log(rootDir);
//=> '/Users/sindresorhus/foo'
});
})();
```
@@ -38,15 +40,15 @@ pkgDir(__dirname).then(function (rootPath) {
### pkgDir([cwd])
Returns a promise that resolves to the package root path or `null`.
Returns a `Promise` for either the project root path or `undefined` if it couldn't be found.
### pkgDir.sync([cwd])
Returns the package root path or `null`.
Returns the project root path or `undefined` if it couldn't be found.
#### cwd
Type: `string`
Type: `string`<br>
Default: `process.cwd()`
Directory to start from.
@@ -55,9 +57,10 @@ Directory to start from.
## Related
- [pkg-dir-cli](https://github.com/sindresorhus/pkg-dir-cli) - CLI for this module
- [pkg-up](https://github.com/sindresorhus/pkg-up) - Find the closest package.json file
- [find-up](https://github.com/sindresorhus/find-up) - Find a file by walking up parent directories
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)
MIT © [Sindre Sorhus](https://sindresorhus.com)