next
Version:
The React Framework
91 lines (90 loc) • 3.95 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
formatWarningsHeader: null,
printBuildErrors: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
formatWarningsHeader: function() {
return formatWarningsHeader;
},
printBuildErrors: function() {
return printBuildErrors;
}
});
const _utils = require("../shared/lib/turbopack/utils");
function formatWarningsHeader(count) {
return `Turbopack build encountered ${count} ${count === 1 ? 'warning' : 'warnings'}:`;
}
function printBuildErrors(entrypoints, isDev, opts) {
// Issues that we want to stop the server from executing
const topLevelFatalIssues = [];
// Issues that are true errors, but we believe we can keep running and allow the user to address the issue
const topLevelErrors = [];
// Issues that are warnings but should not affect the running of the build
const topLevelWarnings = [];
// Track seen formatted error messages to avoid duplicates
const seenFatalIssues = new Set();
const seenErrors = new Set();
const seenWarnings = new Set();
for (const issue of entrypoints.issues){
// We only want to completely shut down the server
if (issue.severity === 'fatal' || issue.severity === 'bug') {
const formatted = (0, _utils.formatIssue)(issue);
if (!seenFatalIssues.has(formatted)) {
seenFatalIssues.add(formatted);
topLevelFatalIssues.push(formatted);
}
} else if ((0, _utils.isRelevantWarning)(issue)) {
const formatted = (0, _utils.formatIssue)(issue);
if (!seenWarnings.has(formatted)) {
seenWarnings.add(formatted);
topLevelWarnings.push(formatted);
}
} else if (issue.severity === 'error') {
const formatted = (0, _utils.formatIssue)(issue);
if (isDev) {
// We want to treat errors as recoverable in development
// so that we can show the errors in the site and allow users
// to respond to the errors when necessary. In production builds
// though we want to error out and stop the build process.
if (!seenErrors.has(formatted)) {
seenErrors.add(formatted);
topLevelErrors.push(formatted);
}
} else {
if (!seenFatalIssues.has(formatted)) {
seenFatalIssues.add(formatted);
topLevelFatalIssues.push(formatted);
}
}
}
}
// TODO: print in order by source location so issues from the same file are displayed together and then add a summary at the end about the number of warnings/errors
const deferWarnings = ((opts == null ? void 0 : opts.deferWarnings) ?? false) && topLevelFatalIssues.length === 0;
if (topLevelWarnings.length > 0 && !deferWarnings) {
console.warn(`${formatWarningsHeader(topLevelWarnings.length)}\n${topLevelWarnings.join('\n')}`);
}
if (topLevelErrors.length > 0) {
console.error(`Turbopack build encountered ${topLevelErrors.length} ${topLevelErrors.length === 1 ? 'error' : 'errors'}:\n${topLevelErrors.join('\n')}`);
}
if (topLevelFatalIssues.length > 0) {
throw Object.defineProperty(new Error(`Turbopack build failed with ${topLevelFatalIssues.length} ${topLevelFatalIssues.length === 1 ? 'error' : 'errors'}:\n${topLevelFatalIssues.join('\n')}`), "__NEXT_ERROR_CODE", {
value: "E1366",
enumerable: false,
configurable: true
});
}
return {
warnings: deferWarnings ? topLevelWarnings : []
};
}
//# sourceMappingURL=print-build-errors.js.map