Skip to content

Commit ec605e0

Browse files
committed
chore: update deps
1 parent c00cba9 commit ec605e0

File tree

8 files changed

+285
-223
lines changed

8 files changed

+285
-223
lines changed

docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"@iconify-json/svg-spinners": "^1.1.2",
1414
"@unocss/reset": "^0.58.3",
1515
"@vueuse/core": "^10.7.1",
16-
"floating-vue": "^5.0.2",
16+
"floating-vue": "^5.0.3",
1717
"pinia": "^2.1.7",
1818
"shikiji": "workspace:*",
1919
"shikiji-transformers": "workspace:*",
2020
"shikiji-twoslash": "workspace:*",
2121
"unocss": "^0.58.3",
2222
"unplugin-vue-components": "^0.26.0",
2323
"vitepress": "^1.0.0-rc.36",
24-
"vue": "^3.4.7"
24+
"vue": "^3.4.11"
2525
}
2626
}

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"version": "0.9.18",
44
"private": true,
5-
"packageManager": "pnpm@8.14.0",
5+
"packageManager": "pnpm@8.14.1",
66
"scripts": {
77
"lint": "eslint .",
88
"release": "bumpp && pnpm -r publish",
@@ -24,7 +24,7 @@
2424
"@rollup/plugin-terser": "^0.4.4",
2525
"@types/fs-extra": "^11.0.4",
2626
"@types/hast": "^3.0.3",
27-
"@types/node": "^20.10.8",
27+
"@types/node": "^20.11.0",
2828
"@vitest/coverage-v8": "^1.1.3",
2929
"ansi-sequence-parser": "^1.1.1",
3030
"bumpp": "^9.2.1",
@@ -40,13 +40,13 @@
4040
"markdown-it-shikiji": "workspace:*",
4141
"mdast-util-from-markdown": "^2.0.0",
4242
"mdast-util-gfm": "^3.0.0",
43-
"mdast-util-to-hast": "^13.0.2",
43+
"mdast-util-to-hast": "^13.1.0",
4444
"ofetch": "^1.3.3",
45-
"pnpm": "^8.14.0",
45+
"pnpm": "^8.14.1",
4646
"prettier": "^3.1.1",
4747
"rehype-shikiji": "workspace:*",
4848
"rimraf": "^5.0.5",
49-
"rollup": "^4.9.4",
49+
"rollup": "^4.9.5",
5050
"rollup-plugin-copy": "^3.5.0",
5151
"rollup-plugin-dts": "^6.1.0",
5252
"rollup-plugin-esbuild": "^6.1.0",

packages/rehype-shikiji/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@
5959
"devDependencies": {
6060
"rehype-stringify": "^10.0.0",
6161
"remark-parse": "^11.0.0",
62-
"remark-rehype": "^11.0.0"
62+
"remark-rehype": "^11.1.0"
6363
}
6464
}

packages/shikiji-twoslash/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
},
6161
"devDependencies": {
6262
"@iconify-json/carbon": "^1.1.27",
63-
"@iconify-json/codicon": "^1.1.39",
63+
"@iconify-json/codicon": "^1.1.40",
6464
"hast-util-from-html": "^2.0.1",
6565
"shiki": "^0.14.7",
6666
"shiki-twoslash": "^3.1.2",

packages/shikiji/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@
9999
"shikiji-core": "workspace:*"
100100
},
101101
"devDependencies": {
102-
"tm-grammars": "^1.0.11",
103-
"tm-themes": "^1.0.7",
102+
"tm-grammars": "^1.0.13",
103+
"tm-themes": "^1.0.9",
104104
"vscode-oniguruma": "^1.7.0"
105105
}
106106
}

packages/shikiji/src/assets/themes.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
import type { DynamicImportThemeRegistration, BundledThemeInfo } from 'shikiji-core'
55

66
export const bundledThemesInfo: BundledThemeInfo[] = [
7+
{
8+
"id": "andromeeda",
9+
"displayName": "Andromeeda",
10+
"type": "dark",
11+
"import": (() => import('./themes/andromeeda')) as unknown as DynamicImportThemeRegistration
12+
},
713
{
814
"id": "aurora-x",
915
"displayName": "Aurora X",
@@ -210,6 +216,6 @@ export const bundledThemesInfo: BundledThemeInfo[] = [
210216
}
211217
]
212218

213-
export type BundledTheme = 'aurora-x' | 'catppuccin-frappe' | 'catppuccin-latte' | 'catppuccin-macchiato' | 'catppuccin-mocha' | 'dark-plus' | 'dracula' | 'dracula-soft' | 'github-dark' | 'github-dark-dimmed' | 'github-light' | 'light-plus' | 'material-theme' | 'material-theme-darker' | 'material-theme-lighter' | 'material-theme-ocean' | 'material-theme-palenight' | 'min-dark' | 'min-light' | 'monokai' | 'nord' | 'one-dark-pro' | 'poimandres' | 'red' | 'rose-pine' | 'rose-pine-dawn' | 'rose-pine-moon' | 'slack-dark' | 'slack-ochin' | 'solarized-dark' | 'solarized-light' | 'vitesse-black' | 'vitesse-dark' | 'vitesse-light'
219+
export type BundledTheme = 'andromeeda' | 'aurora-x' | 'catppuccin-frappe' | 'catppuccin-latte' | 'catppuccin-macchiato' | 'catppuccin-mocha' | 'dark-plus' | 'dracula' | 'dracula-soft' | 'github-dark' | 'github-dark-dimmed' | 'github-light' | 'light-plus' | 'material-theme' | 'material-theme-darker' | 'material-theme-lighter' | 'material-theme-ocean' | 'material-theme-palenight' | 'min-dark' | 'min-light' | 'monokai' | 'nord' | 'one-dark-pro' | 'poimandres' | 'red' | 'rose-pine' | 'rose-pine-dawn' | 'rose-pine-moon' | 'slack-dark' | 'slack-ochin' | 'solarized-dark' | 'solarized-light' | 'vitesse-black' | 'vitesse-dark' | 'vitesse-light'
214220

215221
export const bundledThemes = Object.fromEntries(bundledThemesInfo.map(i => [i.id, i.import])) as Record<BundledTheme, DynamicImportThemeRegistration>

packages/vitepress-plugin-twoslash/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@
5252
"prepublishOnly": "nr build"
5353
},
5454
"dependencies": {
55-
"floating-vue": "^5.0.2",
55+
"floating-vue": "^5.0.3",
5656
"mdast-util-from-markdown": "^2.0.0",
5757
"mdast-util-gfm": "^3.0.0",
58-
"mdast-util-to-hast": "^13.0.2",
58+
"mdast-util-to-hast": "^13.1.0",
5959
"shikiji": "workspace:*",
6060
"shikiji-twoslash": "workspace:*",
61-
"vue": "^3.4.7"
61+
"vue": "^3.4.11"
6262
}
6363
}

0 commit comments

Comments
 (0)