Compare commits

...

2 Commits

Author SHA1 Message Date
Logan Cusano
9f2ed48caf Added better docs
Some checks failed
Lint JavaScript/Node.js / lint-js (pull_request) Failing after 14s
DRB Tests / drb_mocha_tests (pull_request) Successful in 34s
Update Wiki from JSDoc / update-wiki (pull_request) Successful in 15s
2024-08-17 18:11:38 -04:00
Logan Cusano
3f42d60efc Add docs to ignored file for this repo 2024-08-17 18:11:14 -04:00
4 changed files with 1929 additions and 2 deletions

5
.gitignore vendored
View File

@@ -301,4 +301,7 @@ config/
op25/
# Ignore any local run scripts for development
*.bat
*.bat
# Ignore the auto-generated docs folder
/docs

View File

@@ -8,7 +8,7 @@
"opts": {
"destination": "./docs",
"recurse": true,
"template": "default"
"template": "node_modules/better-docs"
}
}

1922
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"description": "",
"main": "server.js",
"scripts": {
"docs": "jsdoc -c jsdoc.json -d docs -t ./node_modules/better-docs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha --timeout 5000",
@@ -13,6 +14,7 @@
"license": "ISC",
"type": "module",
"devDependencies": {
"better-docs": "^2.7.3",
"chai": "^5.1.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",