@kestra-io/ui-libs 0.0.63 → 0.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@ export default function useMarkdownParser() {
|
|
|
44
44
|
if (!info) {
|
|
45
45
|
throw new Error(`[@nuxtjs/mdc] Could not find shiki language: ${lang}`);
|
|
46
46
|
}
|
|
47
|
-
const langImport = () => import(
|
|
47
|
+
const langImport = () => import(`shiki/langs/${info.id}.mjs`);
|
|
48
48
|
langsMap[info.id] = langImport;
|
|
49
49
|
for (const alias of info.aliases || []) {
|
|
50
50
|
langsMap[alias] = langImport;
|