Skip to content

Commit cbfc01c

Browse files
Michael.KryvoruchkoMichael.Kryvoruchko
Michael.Kryvoruchko
authored and
Michael.Kryvoruchko
committed
chore(deps): update packages. fix tests config
1 parent a83001d commit cbfc01c

File tree

5 files changed

+37
-19
lines changed

5 files changed

+37
-19
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"devDependencies": {
4747
"@gitart/eslint-config-vue": "0.0.8",
4848
"@types/node": "^17.0.5",
49-
"@vitejs/plugin-vue": "^2.0.1",
49+
"@vitejs/plugin-vue": "^2.2.4",
5050
"@vue/compiler-sfc": "^3.2.26",
5151
"@vue/runtime-core": "^3.2.26",
5252
"@vue/test-utils": "^2.0.0-rc.18",
@@ -61,7 +61,7 @@
6161
"unplugin-vue-components": "^0.17.11",
6262
"vite": "^2.7.7",
6363
"vite-plugin-windicss": "^1.6.1",
64-
"vitest": "^0.5.4",
64+
"vitest": "^0.5.9",
6565
"vue": "^3.2.26",
6666
"vue-tsc": "^0.30.1",
6767
"windicss": "^3.4.0"

pnpm-lock.yaml

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/auto-imports.d.ts

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Generated by 'unplugin-auto-import'
2+
// We suggest you to commit this file into source control
3+
declare global {
4+
const afterAll: typeof import('vitest')['afterAll']
5+
const afterEach: typeof import('vitest')['afterEach']
6+
const assert: typeof import('vitest')['assert']
7+
const beforeAll: typeof import('vitest')['beforeAll']
8+
const beforeEach: typeof import('vitest')['beforeEach']
9+
const chai: typeof import('vitest')['chai']
10+
const describe: typeof import('vitest')['describe']
11+
const expect: typeof import('vitest')['expect']
12+
const it: typeof import('vitest')['it']
13+
const suite: typeof import('vitest')['suite']
14+
const test: typeof import('vitest')['test']
15+
const vi: typeof import('vitest')['vi']
16+
const vitest: typeof import('vitest')['vitest']
17+
}
18+
export {}

tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@
2929
"emitDecoratorMetadata": true,
3030
"paths": {
3131
"gitart-vue-dialog": ["./src/index.ts"]
32-
},
33-
"types": [
34-
"vitest/global"
35-
]
32+
}
3633
},
3734
"exclude": [
3835
"node_modules"

vitest.config.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
/// <reference types="vitest" />
2-
3-
import { defineConfig } from 'vite'
4-
import Vue from '@vitejs/plugin-vue'
1+
import { defineConfig } from 'vitest/config'
2+
import vue from '@vitejs/plugin-vue'
3+
import AutoImport from 'unplugin-auto-import/vite'
54

65
export default defineConfig({
76
plugins: [
8-
Vue(),
7+
vue({}) as any,
8+
AutoImport({
9+
imports: ['vitest'],
10+
dts: 'tests/auto-imports.d.ts',
11+
}),
912
],
1013
test: {
1114
global: true,

0 commit comments

Comments
 (0)