Skip to content

Commit 3bf96e5

Browse files
Merge branch 'main' into svelte-5
# Conflicts: # package.json # pnpm-lock.yaml
2 parents 86894e0 + b0e91fd commit 3bf96e5

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

package.json

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
"devDependencies": {
1616
"@neoconfetti/svelte": "^2.2.1",
1717
"@octokit/graphql-schema": "^15.25.0",
18-
"@shikijs/rehype": "^1.23.1",
19-
"@sveltejs/adapter-vercel": "^5.4.8",
20-
"@sveltejs/kit": "^2.8.5",
18+
"@shikijs/langs": "^1.25.1",
19+
"@shikijs/rehype": "^1.25.1",
20+
"@shikijs/themes": "^1.25.1",
21+
"@sveltejs/adapter-vercel": "^5.5.2",
22+
"@sveltejs/kit": "^2.15.1",
2123
"@sveltejs/vite-plugin-svelte": "^4.0.0",
2224
"@tailwindcss/typography": "^0.5.15",
2325
"@total-typescript/ts-reset": "^0.6.1",
@@ -28,38 +30,38 @@
2830
"autoprefixer": "^10.4.20",
2931
"bits-ui": "^1.0.0-next.64",
3032
"clsx": "^2.1.1",
31-
"eslint": "^9.15.0",
33+
"eslint": "^9.17.0",
3234
"eslint-config-prettier": "^9.1.0",
33-
"eslint-plugin-svelte": "^2.46.0",
34-
"globals": "^15.12.0",
35-
"lucide-svelte": "^0.462.0",
35+
"eslint-plugin-svelte": "^2.46.1",
36+
"globals": "^15.14.0",
37+
"lucide-svelte": "^0.469.0",
3638
"mode-watcher": "^0.5.0",
37-
"octokit": "^4.0.2",
39+
"octokit": "^4.0.3",
3840
"postcss": "^8.4.49",
3941
"postcss-load-config": "^6.0.1",
40-
"prettier": "^3.4.1",
42+
"prettier": "^3.4.2",
4143
"prettier-plugin-svelte": "^3.3.2",
4244
"prettier-plugin-tailwindcss": "^0.6.9",
4345
"rehype-raw": "^7.0.0",
4446
"semver": "^7.6.3",
45-
"shiki": "^1.23.1",
47+
"shiki": "^1.25.1",
4648
"svelte": "^5.1.3",
47-
"svelte-check": "^4.1.0",
49+
"svelte-check": "^4.1.1",
4850
"svelte-exmarkdown": "^4.0.1",
4951
"svelte-meta-tags": "^4.0.4",
5052
"svelte-persisted-store": "^0.12.0",
5153
"svelte-sonner": "^0.3.28",
5254
"sveltekit-search-params": "^3.0.0",
53-
"tailwind-merge": "^2.5.5",
55+
"tailwind-merge": "^2.6.0",
5456
"tailwind-variants": "^0.3.0",
55-
"tailwindcss": "^3.4.15",
57+
"tailwindcss": "^3.4.17",
5658
"tailwindcss-animate": "^1.0.7",
5759
"tslib": "^2.8.1",
5860
"typescript": "^5.7.2",
59-
"typescript-eslint": "^8.16.0",
61+
"typescript-eslint": "^8.19.0",
6062
"vite": "^5.4.11",
6163
"vite-plugin-lucide-preprocess": "^1.2.3"
6264
},
6365
"type": "module",
64-
"packageManager": "pnpm@9.14.2"
66+
"packageManager": "pnpm@9.15.2"
6567
}

src/routes/[pullOrIssue=poi]/[org]/[repo]/[id=number]/PageRenderer.svelte

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<script module>
22
import { createHighlighterCoreSync } from "shiki";
33
import { createJavaScriptRegexEngine } from "shiki/engine/javascript";
4-
import svelte from "shiki/langs/svelte.mjs";
5-
import typescript from "shiki/langs/typescript.mjs";
6-
import javascript from "shiki/langs/javascript.mjs";
7-
import html from "shiki/langs/html.mjs";
8-
import css from "shiki/langs/css.mjs";
9-
import json from "shiki/langs/json.mjs";
10-
import shell from "shiki/langs/shell.mjs";
11-
import githubLight from "shiki/themes/github-light-default.mjs";
12-
import githubDark from "shiki/themes/github-dark-default.mjs";
4+
import svelte from "@shikijs/langs/svelte";
5+
import typescript from "@shikijs/langs/typescript";
6+
import javascript from "@shikijs/langs/javascript";
7+
import html from "@shikijs/langs/html";
8+
import css from "@shikijs/langs/css";
9+
import json from "@shikijs/langs/json";
10+
import shell from "@shikijs/langs/shell";
11+
import githubLight from "@shikijs/themes/github-light-default";
12+
import githubDark from "@shikijs/themes/github-dark-default";
1313
1414
const highlighter = createHighlighterCoreSync({
1515
langs: [svelte, typescript, javascript, html, css, json, shell],

0 commit comments

Comments
 (0)