chore: upgrade deps
Signed-off-by: Yue Yang <g1enyy0ung@gmail.com>
This commit is contained in:
parent
4c3a0776b0
commit
c0251f2d2e
34
package.json
34
package.json
|
@ -15,16 +15,16 @@
|
|||
"prepare": "husky"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docusaurus/core": "3.6.3",
|
||||
"@docusaurus/preset-classic": "3.6.3",
|
||||
"@docusaurus/core": "3.7.0",
|
||||
"@docusaurus/preset-classic": "3.7.0",
|
||||
"@gracefullight/docusaurus-plugin-microsoft-clarity": "^1.0.0",
|
||||
"@mdx-js/react": "^3.0.0",
|
||||
"clsx": "^2.1.0",
|
||||
"gsap": "^3.12.4",
|
||||
"prism-react-renderer": "^2.4.0",
|
||||
"@mdx-js/react": "^3.1.0",
|
||||
"clsx": "^2.1.1",
|
||||
"gsap": "^3.12.5",
|
||||
"prism-react-renderer": "^2.4.1",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"semver": "^7.6.0",
|
||||
"semver": "^7.6.3",
|
||||
"typewriter-effect": "^2.21.0"
|
||||
},
|
||||
"browserslist": {
|
||||
|
@ -40,16 +40,16 @@
|
|||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@docusaurus/module-type-aliases": "3.6.3",
|
||||
"@docusaurus/types": "3.6.3",
|
||||
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
||||
"autoprefixer": "^10.4.17",
|
||||
"daisyui": "^4.12.14",
|
||||
"husky": "^9.0.11",
|
||||
"lint-staged": "^15.2.2",
|
||||
"postcss": "^8.4.35",
|
||||
"prettier": "^2.8.7",
|
||||
"tailwindcss": "^3.4.14"
|
||||
"@docusaurus/module-type-aliases": "3.7.0",
|
||||
"@docusaurus/types": "3.7.0",
|
||||
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"daisyui": "^4.12.23",
|
||||
"husky": "^9.1.7",
|
||||
"lint-staged": "^15.3.0",
|
||||
"postcss": "^8.4.49",
|
||||
"prettier": "^3.4.2",
|
||||
"tailwindcss": "^3.4.17"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0"
|
||||
|
|
4673
pnpm-lock.yaml
4673
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -5,7 +5,7 @@ export default function Card({ children, className, ...props }) {
|
|||
<div
|
||||
className={clsx(
|
||||
'tw-p-6 tw-border tw-border-solid tw-border-base-content tw-border-opacity-15 dark:tw-border-opacity-60 tw-rounded-2xl',
|
||||
className
|
||||
className,
|
||||
)}
|
||||
{...props}
|
||||
>
|
||||
|
|
|
@ -13,7 +13,7 @@ function Feature({ imgUrl, title, description, className, imageWidth }) {
|
|||
<div
|
||||
className={clsx(
|
||||
'tw-relative tw-flex tw-flex-col lg:tw-flex-row tw-items-center tw-h-full',
|
||||
isKubernetes && 'lg:tw-items-start'
|
||||
isKubernetes && 'lg:tw-items-start',
|
||||
)}
|
||||
>
|
||||
{!isKubernetes ? (
|
||||
|
|
|
@ -215,7 +215,7 @@ export default function Mesh() {
|
|||
opacity: 1,
|
||||
top: top - 50,
|
||||
left: left + 25,
|
||||
}
|
||||
},
|
||||
)
|
||||
new Typewriter('.mesh-text', { delay: 50 })
|
||||
.typeString('Injecting NetworkChaos/loss...')
|
||||
|
@ -240,7 +240,7 @@ export default function Mesh() {
|
|||
opacity: 0,
|
||||
top,
|
||||
left: left + 25,
|
||||
}
|
||||
},
|
||||
)
|
||||
})
|
||||
.start()
|
||||
|
|
|
@ -51,8 +51,8 @@ const PickVersion = ({
|
|||
const rendered = isArchive
|
||||
? children.replace(replaced, versionToGitHubRef(version))
|
||||
: version === 'latest'
|
||||
? children
|
||||
: children.replace(replaced, 'v' + version)
|
||||
? children
|
||||
: children.replace(replaced, 'v' + version)
|
||||
|
||||
return <CodeBlock className={className}>{rendered}</CodeBlock>
|
||||
}}
|
||||
|
|
|
@ -72,7 +72,7 @@ function Home() {
|
|||
<h1
|
||||
className={clsx(
|
||||
'tw-inline-block tw-text-5xl xl:tw-text-6xl tw-text-left tw-rounded-2xl tw-backdrop-blur-sm lg:tw-backdrop-blur',
|
||||
styles.heroTitle
|
||||
styles.heroTitle,
|
||||
)}
|
||||
>
|
||||
{/* Due to the below texts are not simple strings, so we can't use <Translate /> here. */}
|
||||
|
@ -207,7 +207,7 @@ function Home() {
|
|||
<img
|
||||
className={clsx(
|
||||
'tw-block tw-mx-auto tw-select-none dark:tw-invert-[.85] dark:tw-saturate-0',
|
||||
styles.chaosCategory
|
||||
styles.chaosCategory,
|
||||
)}
|
||||
src="img/home/chaos-category.svg"
|
||||
alt="Chaos Category"
|
||||
|
|
Loading…
Reference in New Issue