Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tjptak58 committed Aug 1, 2024
2 parents f34314d + 801498b commit e1bf89f
Show file tree
Hide file tree
Showing 13 changed files with 51,994 additions and 31,311 deletions.
Binary file modified .DS_Store
Binary file not shown.
29 changes: 29 additions & 0 deletions .github/workflows/jsdoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: m080 docs

on:
push:
branches:
- main
- jsdoc

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build
uses: andstor/jsdoc-action@v1
with:
source_dir: ./src
output_dir: ./docs
config_file: .jsdoc.json
template: minami
front_page: README.md

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./docs
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
package-lock.json

# testing
/coverage
Expand Down
27 changes: 27 additions & 0 deletions .jsdoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"source": {
"include": ["src/synths", "package.json", "README.md"],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": true,
"useLongnameInNav": false,
"showInheritedInNav": true
},
"opts": {
"destination": "./docs/",
"encoding": "utf8",
"private": true,
"recurse": true,
"template": "./node_modules/minami"
}
}
Loading

0 comments on commit e1bf89f

Please sign in to comment.