Another attempt #25
Some checks failed
release-tag / release-image (push) Successful in 2m1s
Update Wiki from JSDoc / update-wiki (push) Failing after 11s
Lint JavaScript/Node.js / lint-js (push) Successful in 11s
DRB Tests / drb_mocha_tests (push) Successful in 29s

This commit is contained in:
Logan Cusano
2024-08-18 01:23:14 -04:00
parent f725ec88f9
commit acadc9faee
3 changed files with 1334 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
{ {
"source": { "source": {
"includePattern": "src/.+([mc]?js(doc|x)?)$" "includePattern": ".+([mc]?js(doc|x)?)$"
},
"plugins": ["node_modules/jsdoc-babel"],
"babel": {
"presets": [ "es2015" ],
"plugins": [ "transform-async-to-generator" ]
} }
} }

1327
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,7 @@
"description": "", "description": "",
"main": "src/server.js", "main": "src/server.js",
"scripts": { "scripts": {
"docs": "jsdoc2md -c jsdoc.conf src/**/*.*js > Home.md", "docs": "jsdoc2md -c jsdoc.conf src/*js > Home.md",
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint --fix .", "lint:fix": "eslint --fix .",
"test": "mocha --timeout 5000", "test": "mocha --timeout 5000",