bump all dependancies

This commit is contained in:
TheFox0x7 2024-05-12 22:13:14 +02:00
parent 8a4d4edddf
commit 97681d6f13
No known key found for this signature in database
GPG key ID: 6CA33903484AF7C2
20 changed files with 9551 additions and 4848 deletions

View file

@ -10,6 +10,7 @@ import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import type { Options as rehypeAutolinkOptions } from 'rehype-autolink-headings';
import rehypeSlug from 'rehype-slug';
import { toString } from 'hast-util-to-string';
import icon from 'astro-icon';
import { SITE } from './src/config.js';
@ -44,6 +45,7 @@ export default defineConfig({
}),
sitemap(),
mdx(),
icon(),
],
markdown: {

View file

@ -23,40 +23,45 @@
"astro check"
],
"*.{js,ts}": [
"eslint --cache",
"tsc --noEmit"
"eslint --cache"
]
},
"devDependencies": {
"@astrojs/check": "^0.2.1",
"@astrojs/mdx": "^1.1.5",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.1.0",
"@astrojs/check": "^0.6.0",
"@astrojs/mdx": "^3.0.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/tailwind": "^5.1.0",
"@astrolib/seo": "^0.6.0",
"@tailwindcss/typography": "^0.5.9",
"@astrolib/seo": "1.0.0-beta.5",
"@tailwindcss/typography": "^0.5.13",
"@types/sanitize-html": "^2.11.0",
"@types/slug": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"astro": "^3.0.3",
"astro-icon": "^0.8.2",
"eslint": "^8.56.0",
"@types/slug": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"astro": "^4.8.2",
"astro-icon": "^1.1.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.29.1",
"eslint-plugin-astro": "^1.1.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"gitea-js": "^1.20.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"marked": "^7.0.5",
"gitea-js": "^1.21.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"marked": "^12.0.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.12.3",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"sanitize-html": "^2.12.0",
"sharp": "^0.32.6",
"slug": "^8.2.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.3.3"
"prettier-plugin-astro": "^0.13.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"sanitize-html": "^2.13.0",
"sharp": "^0.33.3",
"slug": "^9.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"@iconify-json/ic": "^1.1.17",
"@iconify-json/mdi": "^1.1.66",
"@iconify-json/octicon": "^1.1.54",
"@iconify-json/simple-icons": "^1.1.101",
"@iconify-json/tabler": "^1.1.111",
"@types/hast": "^3.0.4"
}
}

14301
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import { getRelativeLink } from '~/utils/permalinks';
const { prevUrl, nextUrl, prevText = 'Newer posts', nextText = 'Older posts' } = Astro.props;
---

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import ReleaseStatus from '~/components/atoms/ReleaseStatus.astro';

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
const {
label = 'Toggle Menu',
@ -11,5 +11,5 @@ const {
---
<button type="button" class={className} aria-label={label} data-aw-toggle-menu>
<Icon name={iconName} class={iconClass} optimize={false} />
<Icon name={iconName} class={iconClass} />
</button>

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
const {
label = 'Toggle between Dark and Light mode',

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
---
<section class="relative border-t border-stone-200 dark:border-steel-600">

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
const { license, sourceURL, originURL } = Astro.props;

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
const items = [
[

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
const items = [
[

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
const items = [
{

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
---
<section>

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import { getBlogPermalink, getHomePermalink, getPermalink, getRelativeLink } from '~/utils/permalinks';
const links = [

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import Logo from '~/components/atoms/Logo.astro';
import ToggleTheme from '~/components/core/ToggleTheme.astro';
import ToggleMenu from '~/components/core/ToggleMenu.astro';

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import { Image, getImage } from 'astro:assets';
import { getPermalink } from '~/utils/permalinks';

View file

@ -1,5 +1,5 @@
---
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
---
<section class="bg-primary-100 dark:bg-steel-800">

View file

@ -2,7 +2,7 @@
import type { GetStaticPathsOptions } from 'astro';
import { getCollection } from 'astro:content';
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import { SITE, BLOG } from '~/config.js';

View file

@ -2,7 +2,7 @@
import type { GetStaticPathsOptions } from 'astro';
import type { Release } from 'gitea-js';
import { Icon } from 'astro-icon';
import { Icon } from 'astro-icon/components';
import { SITE } from '~/config.js';

View file

@ -9,6 +9,7 @@
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"]
},
"skipLibCheck": true
"skipLibCheck": true,
"esModuleInterop": true
}
}