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 f5b06e8 commit ef64644Copy full SHA for ef64644
tests/integration/cli/build-watch/build.test.ts
@@ -90,9 +90,6 @@ export default defineConfig({
90
index: ['./test-temp-src/**'],
91
},
92
93
- performance: {
94
- printFileSize: false,
95
- }
96
});
97
`,
98
);
@@ -116,8 +113,8 @@ export default defineConfig({
116
113
await expectFileWithContent(distIndexFile, 'index');
117
114
118
115
fse.outputFileSync(srcFooFile, `export const foo = 'foo';`);
119
- await expectFileWithContent(distFooFile, `'foo'`);
120
fse.outputFileSync(srcFoo2File, `export const foo2 = 'foo2';`);
+ await expectFileWithContent(distFooFile, `'foo'`);
121
await expectFileWithContent(distFoo2File, 'foo2');
122
123
const content1 = await fse.readFile(distFooFile, 'utf-8');
0 commit comments