next
Version:
The React Framework
82 lines (81 loc) • 3.14 kB
JavaScript
import { readFileSync } from 'fs';
import * as path from 'path';
import { getBabelError } from './parseBabel';
import { getCssError } from './parseCss';
import { getScssError } from './parseScss';
import { getNotFoundError, getImageError } from './parseNotFoundError';
import isError from '../../../../lib/is-error';
import { getNextFontError } from './parseNextFontError';
import { getNextAppLoaderError } from './parseNextAppLoaderError';
import { getNextInvalidImportError } from './parseNextInvalidImportError';
function getFileData(compilation, m) {
var _compilation_compiler;
let resolved;
let ctx = ((_compilation_compiler = compilation.compiler) == null ? void 0 : _compilation_compiler.context) ?? null;
if (ctx !== null && typeof m.resource === 'string') {
const res = path.relative(ctx, m.resource).replace(/\\/g, path.posix.sep);
resolved = res.startsWith('.') ? res : `.${path.posix.sep}${res}`;
} else {
const requestShortener = compilation.requestShortener;
if (typeof (m == null ? void 0 : m.readableIdentifier) === 'function') {
resolved = m.readableIdentifier(requestShortener);
} else {
resolved = m.request ?? m.userRequest;
}
}
if (resolved) {
let content = null;
try {
content = readFileSync(ctx ? path.resolve(ctx, resolved) : resolved, 'utf8');
} catch {}
return [
resolved,
content
];
}
return [
'<unknown>',
null
];
}
export async function getModuleBuildError(compiler, compilation, input) {
if (!(typeof input === 'object' && ((input == null ? void 0 : input.name) === 'ModuleBuildError' || (input == null ? void 0 : input.name) === 'ModuleNotFoundError') && Boolean(input.module) && isError(input.error))) {
return false;
}
const err = input.error;
const [sourceFilename, sourceContent] = getFileData(compilation, input.module);
const notFoundError = await getNotFoundError(compilation, input, sourceFilename, input.module);
if (notFoundError !== false) {
return notFoundError;
}
const imageError = await getImageError(compilation, input, err);
if (imageError !== false) {
return imageError;
}
const babel = getBabelError(sourceFilename, err);
if (babel !== false) {
return babel;
}
const css = getCssError(sourceFilename, err);
if (css !== false) {
return css;
}
const scss = getScssError(sourceFilename, sourceContent, err);
if (scss !== false) {
return scss;
}
const nextFont = getNextFontError(err, input.module);
if (nextFont !== false) {
return nextFont;
}
const nextAppLoader = getNextAppLoaderError(err, input.module, compiler);
if (nextAppLoader !== false) {
return nextAppLoader;
}
const invalidImportError = getNextInvalidImportError(err, input.module, compilation, compiler);
if (invalidImportError !== false) {
return invalidImportError;
}
return false;
}
//# sourceMappingURL=webpackModuleError.js.map