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 814907a commit d8036f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.63",
"version": "0.0.64",
"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(`../../node_modules/shiki/dist/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
7 changes: 0 additions & 7 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,8 @@ import {defineConfig} from "vite";
import vue from "@vitejs/plugin-vue";
import {viteStaticCopy} from "vite-plugin-static-copy";
import * as sass from "sass";
import path from "path";

export default defineConfig({
resolve: {
alias: {
"#mdc-imports": path.resolve(__dirname, "./stub-mdc-imports.js"),
"#mdc-configs": path.resolve(__dirname, "./stub-mdc-imports.js"),
}
},
build: {
lib: {
entry: resolve(__dirname, "src/index.js"),
Expand Down

0 comments on commit d8036f0

Please sign in to comment.