-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix: respect project resolve.conditions for externals
#9717
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
hi-ogawa
merged 4 commits into
vitest-dev:main
from
hi-ogawa:02-22-fix_respect_project_resolve.conditions_for_externals
Feb 24, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fb658d0
fix: respect project resolve.conditions for externals
hi-ogawa b423c94
fix: pool applies resolve.conditions per project
hi-ogawa e45c089
test: avoid '@vitest/*` package
hi-ogawa f8d4685
Merge branch 'main' into 02-22-fix_respect_project_resolve.conditions…
hi-ogawa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
test/config/fixtures/conditions-projects/project-a/basic.test.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| import { test, expect } from "vitest"; | ||
| import conditionCustom from "test-dep-conditions/custom"; | ||
| import conditionModule from "test-dep-conditions/module"; | ||
| import conditionNode from "test-dep-conditions/node"; | ||
| import conditionDevelopment from "test-dep-conditions/development"; | ||
| import conditionProduction from "test-dep-conditions/production"; | ||
| import inline from "test-dep-conditions/inline"; | ||
| import indirect from "test-dep-conditions/indirect"; | ||
|
|
||
| import { viteVersion } from "vitest/node"; | ||
| const viteMajor = Number(viteVersion.split(".")[0]); | ||
|
|
||
| test("conditions", () => { | ||
| expect({ | ||
| inline, | ||
| conditionCustom, | ||
| conditionModule, | ||
| conditionNode, | ||
| conditionDevelopment, | ||
| conditionProduction, | ||
| indirect, | ||
| }).toEqual({ | ||
| inline: false, | ||
| conditionCustom: true, | ||
| conditionDevelopment: true, | ||
| conditionModule: viteMajor <= 5, | ||
| conditionNode: true, | ||
| conditionProduction: false, | ||
| indirect: { | ||
| conditionCustom: true, | ||
| conditionDevelopment: true, | ||
| conditionModule: viteMajor <= 5 && inline, | ||
| conditionNode: true, | ||
| conditionProductioin: false, | ||
| }, | ||
| }); | ||
| }); |
13 changes: 13 additions & 0 deletions
13
test/config/fixtures/conditions-projects/project-a/vitest.config.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| import { defaultServerConditions } from "vite"; | ||
| import { defineConfig } from "vitest/config"; | ||
|
|
||
| export default defineConfig({ | ||
| define: { | ||
| "import.meta.__IS_INLINE__": "true", | ||
| }, | ||
| ssr: { | ||
| resolve: { | ||
| conditions: ["custom", ...defaultServerConditions.filter((c) => c !== "module")], | ||
| }, | ||
| }, | ||
| }); |
37 changes: 37 additions & 0 deletions
37
test/config/fixtures/conditions-projects/project-b/basic.test.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| import { test, expect } from "vitest"; | ||
| import conditionCustom from "test-dep-conditions/custom"; | ||
| import conditionModule from "test-dep-conditions/module"; | ||
| import conditionNode from "test-dep-conditions/node"; | ||
| import conditionDevelopment from "test-dep-conditions/development"; | ||
| import conditionProduction from "test-dep-conditions/production"; | ||
| import inline from "test-dep-conditions/inline"; | ||
| import indirect from "test-dep-conditions/indirect"; | ||
|
|
||
| import { viteVersion } from "vitest/node"; | ||
| const viteMajor = Number(viteVersion.split(".")[0]); | ||
|
|
||
| test("conditions", () => { | ||
| expect({ | ||
| inline, | ||
| conditionCustom, | ||
| conditionModule, | ||
| conditionNode, | ||
| conditionDevelopment, | ||
| conditionProduction, | ||
| indirect, | ||
| }).toEqual({ | ||
| inline: false, | ||
| conditionCustom: false, | ||
| conditionDevelopment: true, | ||
| conditionModule: viteMajor <= 5, | ||
| conditionNode: true, | ||
| conditionProduction: false, | ||
| indirect: { | ||
| conditionCustom: false, | ||
| conditionDevelopment: true, | ||
| conditionModule: viteMajor <= 5 && inline, | ||
| conditionNode: true, | ||
| conditionProductioin: false, | ||
| }, | ||
| }); | ||
| }); |
7 changes: 7 additions & 0 deletions
7
test/config/fixtures/conditions-projects/project-b/vitest.config.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| import { defineConfig } from "vitest/config"; | ||
|
|
||
| export default defineConfig({ | ||
| define: { | ||
| "import.meta.__IS_INLINE__": "true", | ||
| }, | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| import { defineConfig } from "vitest/config"; | ||
|
|
||
| export default defineConfig({ | ||
| test: { | ||
| projects: ["project-a", "project-b"], | ||
| }, | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a trap of
@vitest/*named packages resolving differently since it's forcefully externalized. I renamed it to bare package name.