Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-io committed Jan 26, 2025
1 parent 2335d0e commit ca1063a
Show file tree
Hide file tree
Showing 7 changed files with 685 additions and 795 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"test:unit": "cargo test"
},
"devDependencies": {
"@azat-io/eslint-config": "^2.10.0",
"@azat-io/eslint-config": "^2.11.1",
"@azat-io/stylelint-config": "^0.1.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
Expand All @@ -64,32 +64,32 @@
"@tanstack/svelte-table": "9.0.0-alpha.10",
"@tanstack/table-core": "9.0.0-alpha.10",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^22.10.6",
"@types/node": "^22.10.10",
"browserslist": "^4.24.4",
"changelogen": "^0.5.7",
"changelogithub": "^0.13.11",
"changelogithub": "^13.12.1",
"chart.js": "^4.4.7",
"clean-publish": "^5.1.0",
"cspell": "^8.17.2",
"date-fns": "^4.1.0",
"eslint": "^9.18.0",
"eslint": "^9.19.0",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.29.1",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.13.2",
"stylelint-config-recess-order": "^5.1.1",
"stylelint": "^16.14.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-gamut": "^1.3.4",
"stylelint-order": "^6.0.4",
"stylelint-plugin-logical-css": "^1.2.1",
"svelte": "5.17.5",
"svelte": "5.19.3",
"svelte-chartjs": "^3.1.5",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite": "^6.0.11",
"vite-plugin-mock-dev-server": "^1.8.3",
"vite-plugin-singlefile": "^2.1.0"
},
Expand Down
1,450 changes: 670 additions & 780 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions preview/blocks/header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Logo from '~/elements/logo.svelte'
import { data } from '~/stores/data'
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
// eslint-disable-next-line typescript/no-unused-expressions
$theme
let { version, name } = $data
Expand Down Expand Up @@ -87,10 +87,10 @@
color: var(--color-content-brand);
text-decoration: underline;
text-underline-offset: 0.25em;
outline: none;
background: none;
border: none;
border-radius: var(--border-radius);
outline: none;
transition: box-shadow 200ms;
&:focus-visible {
Expand Down
2 changes: 1 addition & 1 deletion preview/elements/chart.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
$: if (chart) {
chart.data = data
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
// eslint-disable-next-line typescript/no-unsafe-assignment
chart.options = options
chart.update()
}
Expand Down
4 changes: 2 additions & 2 deletions preview/elements/table.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@
font: inherit;
text-align: start;
cursor: pointer;
outline: none;
background-color: transparent;
border: none;
border-radius: var(--border-radius);
outline: none;
transition: box-shadow 200ms;
&:focus-visible {
Expand All @@ -169,8 +169,8 @@
.td {
padding: var(--space-2xs);
overflow-wrap: anywhere;
vertical-align: top;
overflow-wrap: anywhere;
}
.td-index {
Expand Down
2 changes: 1 addition & 1 deletion preview/stores/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ export let data = readable<Partial<Data>>({}, set => {
loading.set(false)
}

// eslint-disable-next-line @typescript-eslint/no-floating-promises
// eslint-disable-next-line typescript/no-floating-promises
fetchData()
})
2 changes: 1 addition & 1 deletion preview/styles/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ a {
color: var(--color-content-brand);
text-decoration: underline;
text-underline-offset: 0.25em;
border-radius: var(--border-radius);
outline: none;
border-radius: var(--border-radius);
transition: box-shadow 200ms;

&:focus-visible {
Expand Down

0 comments on commit ca1063a

Please sign in to comment.