-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): Switch to JSDOC docs not in the readme (#1383)
- Improve a few docs here and there - Rename the repo - Remove the authors field in the package.json
- Loading branch information
Showing
25 changed files
with
244 additions
and
1,468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
dir: lib | ||
packageJson: package.json | ||
articles: | ||
- Overview: README.md | ||
branches: | ||
- master | ||
- jsdoc |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ npm-debug.log | |
package-lock.json | ||
Release/ | ||
prebuilds/ | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"tags": { | ||
"allowUnknownTags": true, | ||
"dictionaries": ["jsdoc"] | ||
}, | ||
"source": { | ||
"include": ["lib", "README.md"], | ||
"includePattern": ".+\\.(js|jsx)?$" | ||
}, | ||
"plugins": [ | ||
"plugins/markdown" | ||
], | ||
"markdown": { | ||
"parser": "gfm", | ||
"hardwrap": true, | ||
"excludeTags": [] | ||
}, | ||
"templates": { | ||
"cleverLinks": true, | ||
"monospaceLinks": true | ||
}, | ||
"opts": { | ||
"template": "node_modules/docdash", | ||
"encoding": "utf8", | ||
"private": true, | ||
"destination": "./docs/", | ||
"recurse": true, | ||
"_tutorials": "./examples" | ||
}, | ||
"docdash": { | ||
"static": true, | ||
"sort": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,4 @@ node_modules | |
npm-debug.log | ||
package-lock.json | ||
Release/ | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,7 +91,6 @@ script: | |
npm run lint | ||
fi; | ||
- npm run docs:diff | ||
- node ./ | ||
- npm test | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.