Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update build #1056

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"tsx": "^4.7.1",
"vitepress": "1.0.1",
"vitepress": "1.2.3",
"vue-component-meta": "^1.8.25"
},
"postcss": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"pnpm": {
"patchedDependencies": {
"vitepress@1.0.1": "patches/vitepress@1.0.1.patch"
"vitepress@1.2.3": "patches/vitepress@1.2.3.patch"
}
},
"simple-git-hooks": {
Expand Down
8 changes: 4 additions & 4 deletions packages/radix-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,15 @@
"@testing-library/vue": "^7.0.0",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^20.14.9",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-istanbul": "^0.34.6",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"jsdom": "^23.2.0",
"vite": "^4.5.3",
"vite-plugin-dts": "^3.6.0",
"vitest": "^1.2.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vitest-axe": "0.1.0",
"vitest-canvas-mock": "^0.3.3",
"vue": "^3.4.19",
Expand Down
19 changes: 0 additions & 19 deletions patches/vitepress@1.0.1.patch

This file was deleted.

18 changes: 18 additions & 0 deletions patches/vitepress@1.2.3.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
diff --git a/dist/node/serve-CEEKiiuH.js b/dist/node/serve-CEEKiiuH.js
index 6fdb5a336b38b8e94dbb8c7a86ed5c2756c5bd0a..4433d13b490e984e01f1e3b7f19eadc5357e6c1f 100644
--- a/dist/node/serve-CEEKiiuH.js
+++ b/dist/node/serve-CEEKiiuH.js
@@ -36959,11 +36959,12 @@ function preWrapperPlugin(md, options) {
md.renderer.rules.fence = (...args) => {
const [tokens, idx] = args;
const token = tokens[idx];
+ const title = extractTitle(token.info);
token.info = token.info.replace(/\[.*\]/, "");
const active = / active( |$)/.test(token.info) ? " active" : "";
token.info = token.info.replace(/ active$/, "").replace(/ active /, " ");
const lang = extractLang(token.info);
- return `<div class="language-${lang}${getAdaptiveThemeMarker(options)}${active}"><button title="${options.codeCopyButtonTitle}" class="copy"></button><span class="lang">${lang}</span>` + fence(...args) + "</div>";
+ return `<div title="${title}" class="language-${lang}${getAdaptiveThemeMarker(options)}${active}"><button title="${options.codeCopyButtonTitle}" class="copy"></button><span class="lang">${lang}</span>` + fence(...args) + "</div>";
};
}
function getAdaptiveThemeMarker(options) {
2 changes: 1 addition & 1 deletion playground/vue3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@iconify/vue": "^4.1.2",
"@radix-ui/colors": "^1.0.1",
"@rollup/plugin-alias": "^5.1.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue": "^4.6.2",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"postcss": "^8.4.31",
Expand Down
Loading
Loading