We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e230c commit bd23bd0Copy full SHA for bd23bd0
tests/vue-macros.ts
@@ -13,6 +13,14 @@ export async function test(options: RunOptions) {
13
build: 'build',
14
test: ['test:ecosystem'],
15
overrideVueVersion,
16
+
17
+ // It's already overridden in pnpm-workspace.yaml in the original repo
18
+ // but somehow it doesn't take effect when we also have overrides in package.json
19
+ // So we have to override it here again
20
+ // TODO: should handle such cases in the codebase rather than patching manually in each repo
21
+ overrides: {
22
+ vite: '^7.1.3',
23
+ },
24
patchFiles: {
25
'pnpm-workspace.yaml': (content: string, overrides: Overrides) => {
26
const data = YAML.parse(content)
0 commit comments