Skip to content

Commit 95214f9

Browse files
Merge pull request #46 from webdevnerdstuff/vitest
Vitest
2 parents bb92597 + 87e9526 commit 95214f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+5459
-11050
lines changed

Diff for: .eslintrc.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ module.exports = {
1313
],
1414
ignorePatterns: [
1515
'.eslintrc.js',
16-
'vite.build.config.ts',
17-
'vite.config.ts',
16+
'vite.build.config.mts',
17+
'vite.config.mts',
1818
'*.bk.vue',
19+
'*.spec.ts',
1920
],
2021
overrides: [
2122
{

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ dist-ssr
2626

2727

2828
src/plugin/**/*.bk.*
29+
src/plugin/components/VInlineAutocomplete

Diff for: .husky/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env sh
22
. "$(dirname -- "$0")/_/husky.sh"
33

4-
npx lint-staged
4+
npx lint-staged && npm run test:build

0 commit comments

Comments
 (0)