File tree Expand file tree Collapse file tree 6 files changed +763
-719
lines changed Expand file tree Collapse file tree 6 files changed +763
-719
lines changed Original file line number Diff line number Diff line change 22 "type" : " module" ,
33 "version" : " 3.15.0" ,
44 "private" : true ,
5- "packageManager" : " pnpm@10.21 .0" ,
5+ "packageManager" : " pnpm@10.23 .0" ,
66 "scripts" : {
77 "lint" : " eslint . --cache" ,
88 "release" : " bumpp" ,
Original file line number Diff line number Diff line change 189189 "./luau" : " ./dist/luau.mjs" ,
190190 "./makefile" : " ./dist/makefile.mjs" ,
191191 "./make" : " ./dist/make.mjs" ,
192+ "./markdown-nix" : " ./dist/markdown-nix.mjs" ,
192193 "./markdown-vue" : " ./dist/markdown-vue.mjs" ,
193194 "./md" : " ./dist/md.mjs" ,
194195 "./markdown" : " ./dist/markdown.mjs" ,
215216 "./objective-c" : " ./dist/objective-c.mjs" ,
216217 "./objective-cpp" : " ./dist/objective-cpp.mjs" ,
217218 "./ocaml" : " ./dist/ocaml.mjs" ,
219+ "./scad" : " ./dist/scad.mjs" ,
220+ "./openscad" : " ./dist/openscad.mjs" ,
218221 "./pascal" : " ./dist/pascal.mjs" ,
219222 "./perl" : " ./dist/perl.mjs" ,
220223 "./php" : " ./dist/php.mjs" ,
Original file line number Diff line number Diff line change 189189 "./luau" : " ./dist/luau.mjs" ,
190190 "./makefile" : " ./dist/makefile.mjs" ,
191191 "./make" : " ./dist/make.mjs" ,
192+ "./markdown-nix" : " ./dist/markdown-nix.mjs" ,
192193 "./markdown-vue" : " ./dist/markdown-vue.mjs" ,
193194 "./md" : " ./dist/md.mjs" ,
194195 "./markdown" : " ./dist/markdown.mjs" ,
215216 "./objective-c" : " ./dist/objective-c.mjs" ,
216217 "./objective-cpp" : " ./dist/objective-cpp.mjs" ,
217218 "./ocaml" : " ./dist/ocaml.mjs" ,
219+ "./scad" : " ./dist/scad.mjs" ,
220+ "./openscad" : " ./dist/openscad.mjs" ,
218221 "./pascal" : " ./dist/pascal.mjs" ,
219222 "./perl" : " ./dist/perl.mjs" ,
220223 "./php" : " ./dist/php.mjs" ,
Original file line number Diff line number Diff line change @@ -805,6 +805,14 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [
805805 'name' : 'OCaml' ,
806806 'import' : ( ( ) => import ( '@shikijs/langs/ocaml' ) ) as DynamicImportLanguageRegistration
807807 } ,
808+ {
809+ 'id' : 'openscad' ,
810+ 'name' : 'OpenSCAD' ,
811+ 'aliases' : [
812+ 'scad'
813+ ] ,
814+ 'import' : ( ( ) => import ( '@shikijs/langs/openscad' ) ) as DynamicImportLanguageRegistration
815+ } ,
808816 {
809817 'id' : 'pascal' ,
810818 'name' : 'Pascal' ,
@@ -1552,6 +1560,7 @@ export type BundledLanguage =
15521560 | 'objective-c'
15531561 | 'objective-cpp'
15541562 | 'ocaml'
1563+ | 'openscad'
15551564 | 'pascal'
15561565 | 'perl'
15571566 | 'perl6'
@@ -1598,6 +1607,7 @@ export type BundledLanguage =
15981607 | 'rust'
15991608 | 'sas'
16001609 | 'sass'
1610+ | 'scad'
16011611 | 'scala'
16021612 | 'scheme'
16031613 | 'scss'
You can’t perform that action at this time.
0 commit comments