Skip to content

Commit

Permalink
chore: update some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Oct 30, 2024
1 parent 4573c4c commit e629de2
Show file tree
Hide file tree
Showing 4 changed files with 777 additions and 383 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@vitejs/plugin-vue": "5.0.5",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/coverage-v8": "2.1.4",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"autoprefixer": "^10.4.19",
Expand Down Expand Up @@ -95,10 +95,10 @@
"tailwindcss": "3.4.14",
"ts-node": "10.9.2",
"typescript": "^5.3.3",
"vite": "5.3.3",
"vitepress": "1.3.1",
"vitest": "1.6.0",
"vue": "3.4.31"
"vite": "5.4.10",
"vitepress": "1.4.2",
"vitest": "2.1.4",
"vue": "3.5.12"
},
"lint-staged": {
"docs/.vitepress/theme/**/*.{ts,tsx,js,jsx,vue}": [
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/organisms/home/HomeContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ watch(targetIsVisible, () => {
ref="target"
class="VPContainer"
:class="{
'opacity-0 scale-105 translate-y-6': !show,
'opacity-0 scale-102 translate-y-4': !show,
'opacity-1 scale-100 translate-y-0': show,
'transition-all ease-in-out delay-200 duration-1000': props.animate
'transition-all ease-in-out delay-200 duration-1000 enter-active-class leave-active-class': props.animate
}"
>
<div class="container">
Expand Down
10 changes: 5 additions & 5 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export default defineConfig({
enabled: true,
thresholds: {
autoUpdate: true,
statements: 63.6,
branches: 77.55,
functions: 62.06,
lines: 63.6
statements: 64.6,
branches: 78.89,
functions: 61.29,
lines: 64.6
},
include: ["**/*.{ts,vue}"],
exclude: [
Expand All @@ -40,4 +40,4 @@ export default defineConfig({
reportsDirectory: fileURLToPath(new URL("./coverage", import.meta.url))
}
}
});
});
Loading

0 comments on commit e629de2

Please sign in to comment.