Skip to content

Commit

Permalink
fix(docs): upgrade dogs
Browse files Browse the repository at this point in the history
TAG: latest
  • Loading branch information
tunnckoCore committed Oct 6, 2017
1 parent 5b75fc4 commit 39b899b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .verb.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $ npm install {%= name %}
## API
Review carefully the provided examples and the working [tests](./test.js).

{%= apidocs('index.js') %}
{%= apidocs('src/index.js') %}

{% if (verb.related && verb.related.list && verb.related.list.length) { %}
## Related
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ npm install get-installed-path
## API
Review carefully the provided examples and the working [tests](./test.js).

### [getInstalledPath](index.js#L80)
### [getInstalledPath](src/index.js#L71)

> Get installed path of globally or locally `name` package.
By default it checks if `name` exists as directory in [global-modules][]
Expand Down Expand Up @@ -115,7 +115,7 @@ getInstalledPath('npm', {
// entry script.
```

### [.sync](index.js#L133)
### [.sync](src/index.js#L124)

> Get installed path of a `name` package synchronous.
Returns `boolean` when `paths` option is used and filepath is directory,
Expand Down Expand Up @@ -165,7 +165,7 @@ Copyright © 2016-2017, [Charlike Mike Reagent](https://i.am.charlike.online). R

***

_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on August 23, 2017._
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on October 06, 2017._
Project scaffolded using [charlike-cli][].

[always-done]: https://github.com/hybridables/always-done
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function getInstalledPath (name, opts) {
* @param {string} name package name
* @param {Object} opts pass `opts.local` to check locally
* @return {string} The full filepath or throw `TypeError` if `name` not a string or is empty string
* @name getInstalledPathSync
* @name .sync
* @public
*/
function getInstalledPathSync (name, opts) {
Expand Down

0 comments on commit 39b899b

Please sign in to comment.