Skip to content

Commit

Permalink
chore(deps): update project dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Feb 28, 2025
1 parent f074c26 commit 7febc6f
Show file tree
Hide file tree
Showing 13 changed files with 422 additions and 435 deletions.
12 changes: 6 additions & 6 deletions apps/api/poetry.lock

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

10 changes: 5 additions & 5 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.17.2",
"@sveltejs/kit": "^2.17.3",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.0.8",
"@tailwindcss/vite": "^4.0.9",
"@yd/config": "workspace:*",
"svelte": "^5.20.2",
"svelte": "^5.20.5",
"svelte-check": "^4.1.4",
"tailwindcss": "^4.0.8",
"tailwindcss": "^4.0.9",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.1.1"
"vite": "^6.2.0"
}
}
2 changes: 1 addition & 1 deletion apps/web/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</div>
<div class="container mx-auto mt-8 px-4 pb-8 md:px-12">
<div class="-mx-1 flex flex-wrap lg:-mx-4">
{#each search.results as result}
{#each search.results as result (result.id)}
<ResultCard {result} />
{/each}
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/terms/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
By using {websiteName}, you agree to be bound by the following terms of use:
</p>
<ol class="mx-6 list-decimal py-6 text-left md:mx-32">
{#each termsOfUse as termOfUse}
{#each termsOfUse as termOfUse (termOfUse.title)}
<li class="mt-3 text-zinc-700 dark:text-zinc-300">{termOfUse.title}</li>
{#if termOfUse.description}
<p class="mt-1 text-zinc-500">{termOfUse.description}</p>
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"format": "prettier --write ."
},
"dependencies": {
"@hey-api/client-fetch": "^0.8.1"
"@hey-api/client-fetch": "^0.8.2"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.64.5",
"@hey-api/openapi-ts": "^0.64.7",
"@yd/api": "workspace:*",
"@yd/config": "workspace:*",
"prettier": "^3.5.2",
Expand Down
9 changes: 5 additions & 4 deletions packages/config/eslint/svelte.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ import svelte from 'eslint-plugin-svelte';
import globals from 'globals';
import ts from 'typescript-eslint';

/** @type {import('eslint').Linter.Config[]} */
export default ts.config(
js.configs.recommended,
...ts.configs.recommended,
...svelte.configs['flat/recommended'],
...svelte.configs.recommended,
prettier,
...svelte.configs['flat/prettier'],
...svelte.configs.prettier,
{
languageOptions: {
globals: {
Expand All @@ -20,9 +19,11 @@ export default ts.config(
}
},
{
files: ['**/*.svelte'],
files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'],
languageOptions: {
parserOptions: {
projectService: true,
extraFileExtensions: ['.svelte'],
parser: ts.parser
}
}
Expand Down
8 changes: 4 additions & 4 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-svelte": "^3.0.2",
"globals": "^16.0.0",
"prettier": "^3.5.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte-eslint-parser": "^0.43.0",
"typescript-eslint": "^8.24.1"
"svelte-eslint-parser": "^1.0.0",
"typescript-eslint": "^8.25.0"
}
}
12 changes: 6 additions & 6 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.17.2",
"@sveltejs/kit": "^2.17.3",
"@sveltejs/package": "^2.3.10",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.0.8",
"@tailwindcss/vite": "^4.0.9",
"@yd/config": "workspace:*",
"publint": "^0.3.6",
"svelte": "^5.20.2",
"publint": "^0.3.7",
"svelte": "^5.20.5",
"svelte-check": "^4.1.4",
"tailwindcss": "^4.0.8",
"tailwindcss": "^4.0.9",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.1.1"
"vite": "^6.2.0"
}
}
2 changes: 1 addition & 1 deletion packages/ui/src/lib/components/Pagination.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<Icon src={ChevronLeftIcon} theme="solid" class={outerButtonIconClass()} />
</button>
</li>
{#each clickableNumbers as n}
{#each clickableNumbers as n (n)}
<li>
<button onclick={() => (page = n)} class={numberButtonClass({ active: page == n })}>
{n}
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/src/lib/components/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@
class="w-full rounded-lg border-2 border-zinc-200 p-2 text-zinc-600 outline-hidden focus:border-blue-600 focus:ring-transparent disabled:cursor-not-allowed disabled:bg-zinc-200 dark:border-zinc-600 dark:bg-zinc-800 dark:text-zinc-200 dark:focus:border-blue-600 dark:disabled:bg-zinc-600"
>
{#if groups.length > 0}
{#each groups as group}
{#each groups as group, index (index)}
<optgroup label={group.text} disabled={group.disabled}>
{#each group.options as option}
{#each group.options as option (option.value)}
<option value={option.value}>{option.text}</option>
{/each}
</optgroup>
{/each}
{:else}
{#each options as option}
{#each options as option (option.value)}
<option value={option.value}>{option.text}</option>
{/each}
{/if}
Expand Down
7 changes: 3 additions & 4 deletions packages/ui/src/lib/components/Table.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
};
type TCol = { key: string; title: string };
// eslint-disable-next-line no-undef
type TRow = T;
interface Props {
columns?: TCol[];
Expand All @@ -32,7 +31,7 @@
<table class={classes.table} cellspacing="0">
<thead class={classes.thead}>
<tr class={classes.headtr}>
{#each columns as column, index}
{#each columns as column, index (column.key)}
{@const isLastCol = isLastColumn(index) ? 'text-right' : ''}
<th scope="col" class={`${classes.th} ${isLastCol}`}>
{#if head}
Expand All @@ -45,9 +44,9 @@
</tr>
</thead>
<tbody class={classes.tbody}>
{#each rows as row}
{#each rows as row, index (index)}
<tr class={classes.tr}>
{#each columns as column, index}
{#each columns as column, index (column.key)}
{@const isLastCol = isLastColumn(index) ? 'text-right' : ''}
<td class={`${classes.td} ${isLastCol}`}>
{#if cell}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/lib/components/Tabs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<div class="sm:hidden">
<label for="Tab" class="sr-only">Tab</label>
<select id="Tab" class={selectClass()} bind:value={active}>
{#each tabs as tab}
{#each tabs as tab (tab.key)}
<option value={tab.key}>{tab.title}</option>
{/each}
</select>
Expand Down
Loading

0 comments on commit 7febc6f

Please sign in to comment.