Skip to content

Commit f9d2331

Browse files
committed
fix: buildEntryPoints error not prints issues
1 parent b79220d commit f9d2331

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/wxt/src/core/utils/building/build-entrypoints.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export async function buildEntrypoints(
2222
steps.push(await wxt.builder.build(group));
2323
} catch (err) {
2424
spinner.stop().clear();
25-
wxt.logger.error(err);
25+
console.error(err);
26+
// wxt.logger.error(err);
2627
throw Error(`Failed to build ${groupNames.join(', ')}`, { cause: err });
2728
}
2829
}

0 commit comments

Comments
 (0)