update build essentials

This commit is contained in:
Ulf Gebhardt 2023-12-27 06:36:46 +01:00
parent a851c5c8cb
commit dd674616ed
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 397 additions and 987 deletions

1366
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -76,8 +76,8 @@
"sirv": "^2.0.4", "sirv": "^2.0.4",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "^5.3.3", "typescript": "^5.3.3",
"vike": "^0.4.147", "vike": "^0.4.152",
"vite": "^5.0.2", "vite": "^5.0.10",
"vue": "^3.3.8", "vue": "^3.3.8",
"vue-i18n": "^9.7.1", "vue-i18n": "^9.7.1",
"vuetify": "^3.4.8" "vuetify": "^3.4.8"
@ -95,7 +95,7 @@
"@storybook/vue3-vite": "^7.6.6", "@storybook/vue3-vite": "^7.6.6",
"@typescript-eslint/eslint-plugin": "^6.16.0", "@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0", "@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^0.34.6", "@vitest/coverage-v8": "^1.1.0",
"@vue/test-utils": "^2.4.2", "@vue/test-utils": "^2.4.2",
"@vuepress/bundler-vite": "^2.0.0-rc.0", "@vuepress/bundler-vite": "^2.0.0-rc.0",
"chromatic": "^10.2.0", "chromatic": "^10.2.0",
@ -132,7 +132,7 @@
"vite-plugin-checker": "^0.6.2", "vite-plugin-checker": "^0.6.2",
"vite-plugin-compression": "^0.5.1", "vite-plugin-compression": "^0.5.1",
"vite-plugin-vuetify": "^1.0.2", "vite-plugin-vuetify": "^1.0.2",
"vitest": "^0.34.6", "vitest": "^1.1.0",
"vue-tsc": "^1.8.25", "vue-tsc": "^1.8.25",
"vuepress": "^2.0.0-rc.0" "vuepress": "^2.0.0-rc.0"
}, },

View File

@ -18,11 +18,13 @@ export default mergeConfig(
'**/*{.,-}stories.?(c|m)[jt]s?(x)', '**/*{.,-}stories.?(c|m)[jt]s?(x)',
'src/stories/**/*', 'src/stories/**/*',
], ],
thresholds: {
lines: 17, lines: 17,
// functions: 20, // has problems see https://github.com/vitest-dev/vitest/issues/3607 // functions: 20, // has problems see https://github.com/vitest-dev/vitest/issues/3607
branches: 44, branches: 44,
statements: 17, statements: 17,
}, },
}, },
},
}), }),
) )