This commit is contained in:
Norbert de Langen 2020-04-14 10:55:43 +02:00
parent 78e306138e
commit 7d0d98e54a
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -76,7 +76,6 @@ export function serverRequire(filePath) {
return null;
}
console.log({ candidatePath });
const candidateExt = path.extname(candidatePath);
const moduleDescriptor = interpret.extensions[candidateExt];
@ -93,7 +92,6 @@ export function serverRequire(filePath) {
export function serverResolve(filePath) {
const paths = Array.isArray(filePath) ? filePath : [filePath];
console.log({ paths });
const existingCandidate = getCandidate(paths);
if (!existingCandidate) {