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 474e996 commit c9ff40bCopy full SHA for c9ff40b
1 file changed
src/bin/build.ts
@@ -104,7 +104,9 @@ export async function build(options: Options): Promise<BuildStats> {
104
],
105
onLog: (level, log, handler) => {
106
if (entry.onLog) entry.onLog(level, log, handler, buildLogs)
107
- else buildLogs.push({ level, log })
+ else if (log.code !== 'PLUGIN_TIMINGS') {
108
+ buildLogs.push({ level, log })
109
+ }
110
},
111
resolve: entry.resolve,
112
transform: {
0 commit comments