Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
chore(deps): update dependencies (speced#3763)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi authored Sep 1, 2021
1 parent 866deb6 commit 1e208b6
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 107 deletions.
162 changes: 65 additions & 97 deletions package-lock.json

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

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,22 @@
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/marked": "^2.0.4",
"@types/marked": "^3.0.0",
"@types/pluralize": "0.0.29",
"boxen": "^5.0.1",
"chokidar": "^3.5.2",
"clean-css": "^5.1.5",
"epipebomb": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-prettier": "^4.0.0",
"highlight.js": "^11.2.0",
"hyperhtml": "^2.34.0",
"idb": "^6.1.2",
"jasmine": "^3.8.0",
"idb": "^6.1.3",
"jasmine": "^3.9.0",
"jasmine-core": "^3.9.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
Expand All @@ -51,13 +52,13 @@
"loading-indicator": "^2.0.0",
"pluralize": "^8.0.0",
"prettier": "^2.3.2",
"prompt": "^1.1.0",
"rollup": "^2.56.2",
"prompt": "^1.2.0",
"rollup": "^2.56.3",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"serve": "^12.0.0",
"sniffy-mimetype": "^1.1.1",
"typescript": "^4.3.5",
"typescript": "^4.4.2",
"vnu-jar": "^21.6.11",
"webidl2": "^24.1.2"
},
Expand Down Expand Up @@ -85,8 +86,7 @@
"dependencies": {
"colors": "^1.4.0",
"finalhandler": "^1.1.2",
"jasmine-core": "^3.8.0",
"marked": "^3.0.0",
"marked": "^3.0.2",
"puppeteer": "^10.2.0",
"sade": "^1.7.4",
"serve-static": "^1.14.1"
Expand Down
2 changes: 2 additions & 0 deletions src/core/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class Renderer extends marked.Renderer {
return `<pre class="idl">${code}</pre>`;
}

// @ts-expect-error
const html = super.code(code, language, isEscaped);

const { example, illegalExample } = metaData;
Expand Down Expand Up @@ -100,6 +101,7 @@ class Renderer extends marked.Renderer {
const [, textContent, id] = text.match(headingWithIdRegex);
return `<h${level} id="${id}">${textContent}</h${level}>`;
}
// @ts-expect-error
return super.heading(text, level, raw, slugger);
}
}
Expand Down

0 comments on commit 1e208b6

Please sign in to comment.