Skip to content

Bump the site group across 1 directory with 11 updates #1551

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

Merged
merged 2 commits into from
Apr 5, 2025
Merged
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
508 changes: 250 additions & 258 deletions docs/vercel/package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions docs/vercel/package.json
Original file line number Diff line number Diff line change
@@ -14,20 +14,20 @@
},
"devDependencies": {
"@rollup/plugin-yaml": "^4.1.2",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.16.1",
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/kit": "^2.20.4",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/eslint": "^9.6.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-svelte": "^3.5.1",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^5.19.6",
"svelte-check": "^4.1.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"svelte": "^5.25.6",
"svelte-check": "^4.1.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"vite": "^6.2.5"
}
}
10 changes: 6 additions & 4 deletions docs/vercel/src/app.css
Original file line number Diff line number Diff line change
@@ -7,8 +7,9 @@
/* Body */
html {
font-size: 62.5%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
Arial, 'Noto Sans', sans-serif;
}

body {
@@ -38,8 +39,9 @@ h4,
h5,
h6 {
line-height: 1.1;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
Arial, 'Noto Sans', sans-serif;
font-weight: 700;
margin-top: 3rem;
margin-bottom: 1.5rem;
4 changes: 2 additions & 2 deletions docs/vercel/src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@

<div class:hide={!showMenu}>
<div class="checkbox-group">
{#each languageTypes as type}
{#each languageTypes as type (type)}
<label for={type}>
<input
id={type}
@@ -107,7 +107,7 @@
<code>--type</code> flag to configure.</small>
</div>

{#each $filteredLanguages as language}
{#each $filteredLanguages as language (language.name)}
<AsciiPreview
name={language.name}
ansi={language.colors.ansi}