File tree Expand file tree Collapse file tree 4 files changed +103
-247
lines changed
Expand file tree Collapse file tree 4 files changed +103
-247
lines changed Original file line number Diff line number Diff line change 703703 "@octokit/types" : " ^7.5.1" ,
704704 "@types/diff" : " ^5.2.1" ,
705705 "@types/eslint__js" : " ^8.42.3" ,
706- "@types/markdown-it" : " ^10.0 .2" ,
707- "@types/markdown-it-emoji" : " ^1.4.0 " ,
706+ "@types/markdown-it" : " ^14.1 .2" ,
707+ "@types/markdown-it-emoji" : " ^3.0.1 " ,
708708 "@types/mocha" : " ^10.0.9" ,
709709 "@types/node" : " ^22.8.6" ,
710710 "@types/uuid" : " ^8.3.0" ,
722722 "typescript-eslint" : " ^8.12.2"
723723 },
724724 "dependencies" : {
725- "@electron/docs-parser" : " ^0.12.4 " ,
725+ "@electron/docs-parser" : " ^2.0.0 " ,
726726 "@octokit/rest" : " ^19.0.4" ,
727727 "diff" : " ^5.0.0" ,
728728 "lru-cache" : " ^7.14.0" ,
729- "markdown-it" : " ^10.0 .0" ,
730- "markdown-it-emoji" : " ^2 .0.0" ,
729+ "markdown-it" : " ^14.1 .0" ,
730+ "markdown-it-emoji" : " ^3 .0.0" ,
731731 "typescript" : " ^4.5.5" ,
732732 "typescript-cached-transpile" : " ^0.0.6" ,
733733 "uuid" : " ^8.3.1" ,
Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ export async function activate(context: vscode.ExtensionContext) {
330330 setupDocsLinting ( context ) ;
331331
332332 // Render emojis in Markdown
333- const { default : emojiMarkdownIt } = await import ( "markdown-it-emoji" ) ;
333+ const { full : emojiMarkdownIt } = await import ( "markdown-it-emoji" ) ;
334334 result . extendMarkdownIt = ( md : MarkdownIt ) => md . use ( emojiMarkdownIt ) ;
335335 }
336336 }
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import { Octokit } from "@octokit/rest";
1313import * as Diff from "diff" ;
1414import LRU from "lru-cache" ;
1515import MarkdownIt from "markdown-it" ;
16- import type MarkdownToken from "markdown-it/lib/token" ;
16+ import type { default as MarkdownToken } from "markdown-it/lib/token.mjs " ;
1717import { v4 as uuidv4 } from "uuid" ;
1818
1919import type { PromisifiedExecError } from "./common" ;
You can’t perform that action at this time.
0 commit comments