mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-12 11:16:09 +09:00
Clean up the oopsie. Rebuild the blank exercises.
This commit is contained in:
+13
-10
@@ -1,12 +1,12 @@
|
||||
# pkg-dir [](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)
|
||||
|
||||
Reference in New Issue
Block a user