File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1010 "test" : " node --test --loader ts-node/esm tests/**/*.ts"
1111 },
1212 "dependencies" : {
13- "isomorphic-dompurify" : " 2.26.0" ,
1413 "highlight.js" : " 10.7.3" ,
14+ "isomorphic-dompurify" : " 2.26.0" ,
1515 "jsdom" : " 25.0.0" ,
1616 "marked" : " 14.1.2" ,
1717 "marked-highlight" : " 2.1.4" ,
Original file line number Diff line number Diff line change 1414 "scripts" : {
1515 "build" : " npx lerna run build" ,
1616 "clean" : " ts-node scripts/clean-all.ts" ,
17- "check-packages" : " ts-node scripts/check-packages.ts " ,
17+ "check-packages" : " ts-node scripts/check-packages.mts " ,
1818 "generate-ca" : " node certs/generate.mjs" ,
1919 "lint" : " npx lerna run lint" ,
2020 "lintfix" : " npx lerna run lintfix" ,
Original file line number Diff line number Diff line change 11import fs from "fs" ;
22import path from "path" ;
3+ import { fileURLToPath } from "url" ;
4+ import { dirname } from "path" ;
5+ const __filename = fileURLToPath ( import . meta. url ) ;
6+ const __dirname = dirname ( __filename ) ;
37
48let numFoundErrors = 0 ;
59
You can’t perform that action at this time.
0 commit comments