Skip to content

Commit b992b34

Browse files
authoredSep 5, 2024··
fix: print unexpected error message if peer dependencies have a different version (#6446)
1 parent c3ac43c commit b992b34

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed
 

‎packages/browser/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
"magic-string": "^0.30.11",
9191
"msw": "^2.3.5",
9292
"sirv": "^2.0.4",
93+
"tinyrainbow": "^1.2.0",
9394
"ws": "^8.18.0"
9495
},
9596
"devDependencies": {

‎packages/browser/src/node/index.ts

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import type { WorkspaceProject } from 'vitest/node'
22
import type { Plugin } from 'vitest/config'
33
import { createServer } from 'vitest/node'
4+
import c from 'tinyrainbow'
5+
import { version } from '../../package.json'
46
import { setupBrowserRpc } from './rpc'
57
import { BrowserServer } from './server'
68
import BrowserPlugin from './plugin'
@@ -14,6 +16,16 @@ export async function createBrowserServer(
1416
prePlugins: Plugin[] = [],
1517
postPlugins: Plugin[] = [],
1618
) {
19+
if (project.ctx.version !== version) {
20+
project.ctx.logger.warn(
21+
c.yellow(
22+
`Loaded ${c.inverse(c.yellow(` vitest@${project.ctx.version} `))} and ${c.inverse(c.yellow(` @vitest/browser@${version} `))}.`
23+
+ '\nRunning mixed versions is not supported and may lead into bugs'
24+
+ '\nUpdate your dependencies and make sure the versions match.',
25+
),
26+
)
27+
}
28+
1729
const server = new BrowserServer(project, '/')
1830

1931
const configPath = typeof configFile === 'string' ? configFile : false

‎packages/ui/node/index.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,22 @@ import { basename, resolve } from 'pathe'
33
import sirv from 'sirv'
44
import type { Plugin } from 'vite'
55
import { coverageConfigDefaults } from 'vitest/config'
6-
import type { Vitest } from 'vitest'
6+
import type { Vitest } from 'vitest/node'
77
import { toArray } from '@vitest/utils'
8+
import c from 'tinyrainbow'
9+
import { version } from '../package.json'
810

911
export default (ctx: Vitest): Plugin => {
12+
if (ctx.version !== version) {
13+
ctx.logger.warn(
14+
c.yellow(
15+
`Loaded ${c.inverse(c.yellow(` vitest@${ctx.version} `))} and ${c.inverse(c.yellow(` @vitest/ui@${version} `))}.`
16+
+ '\nRunning mixed versions is not supported and may lead into bugs'
17+
+ '\nUpdate your dependencies and make sure the versions match.',
18+
),
19+
)
20+
}
21+
1022
return <Plugin>{
1123
name: 'vitest:ui',
1224
apply: 'serve',

‎pnpm-lock.yaml

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

0 commit comments

Comments
 (0)
Please sign in to comment.