Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Aug 28, 2024
1 parent 28c9417 commit 0dbb19d
Show file tree
Hide file tree
Showing 6 changed files with 2,477 additions and 2,796 deletions.
1 change: 0 additions & 1 deletion packages/vite/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export function emberBuild(command: string, mode: string): Promise<void> {
console.error(data.toString());
});
child.stdout!.on('data', data => {
console.log(data.toString());
if (data.toString().includes('Build successful')) {
resolve();
}
Expand Down
2 changes: 0 additions & 2 deletions packages/vite/src/esbuild-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,6 @@ export class EsBuildModuleRequest implements ModuleRequest {
status = readStatus(request.specifier + extension);
}

console.log(`search extension ${extension} with ${request.specifier}: `, request.fromFile, result, status);

if (result.errors.length > 0 || status === 'not_found') {
lastResult = { type: 'not_found', err: result };
} else if (result.external) {
Expand Down
Loading

0 comments on commit 0dbb19d

Please sign in to comment.