Skip to content

Commit

Permalink
chore: Upgrade dependencies
Browse files Browse the repository at this point in the history
Closes #1670
Closes #1669
Closes #1668
Closes #1666
Closes #1665

Co-Authored-By: John Haugeland <stonecypher@gmail.com>
  • Loading branch information
Gerrit0 and StoneCypher committed Aug 28, 2021
1 parent 1aee313 commit 7ad5689
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 36 deletions.
5 changes: 5 additions & 0 deletions .npmrc
@@ -0,0 +1,5 @@
# If these were only for production, we'd care, but there's no
# way to ask npm to only report production audit findings when doing
# an install, so just turn it off. We can still check for findings
# with npm audit --production.
audit = false
62 changes: 31 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -26,7 +26,7 @@
"marked": "^3.0.2",
"minimatch": "^3.0.0",
"progress": "^2.0.3",
"shiki": "^0.9.3",
"shiki": "^0.9.8",
"typedoc-default-themes": "^0.12.10"
},
"peerDependencies": {
Expand All @@ -38,11 +38,11 @@
"@types/marked": "^3.0.0",
"@types/minimatch": "3.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.3",
"@types/node": "^16.7.4",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"mocha": "^9.1.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "2.3.2",
"typescript": "^4.4.2"
Expand Down
4 changes: 2 additions & 2 deletions src/lib/utils/options/sources/typedoc.ts
Expand Up @@ -136,8 +136,8 @@ export function addTypeDocOptions(options: Pick<Options, "addDeclaration">) {
help: "Specifies the code highlighting theme.",
type: ParameterType.String,
defaultValue: "light-plus",
validate: (value: string): void => {
if (!BUNDLED_THEMES.includes(value)) {
validate(value) {
if (!(BUNDLED_THEMES as readonly string[]).includes(value)) {
throw new Error(
`highlightTheme must be one of the following: ${BUNDLED_THEMES.join(
", "
Expand Down

0 comments on commit 7ad5689

Please sign in to comment.