Skip to content

Commit

Permalink
chore: update version in package.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-mulier-p committed Sep 26, 2024
1 parent d8036f0 commit e493782
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kestra-io/ui-libs",
"version": "0.0.64",
"version": "0.0.65",
"type": "module",
"files": [
"src",
Expand Down
2 changes: 1 addition & 1 deletion src/composables/useMarkdownParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function useMarkdownParser() {
if (!info) {
throw new Error(`[@nuxtjs/mdc] Could not find shiki language: ${lang}`);
}
const langImport = () => import(`@shiki-langs/${info.id}.mjs`);
const langImport = () => import(`shiki/langs/${info.id}.mjs`);
langsMap[info.id] = langImport;
for (const alias of info.aliases || []) {
langsMap[alias] = langImport;
Expand Down

0 comments on commit e493782

Please sign in to comment.