#3780: Do not display wrong warning when loading ".js" or ".json"

This commit is contained in:
Sergii Bondarenko 2018-08-23 14:00:48 +04:00
parent 887d64b65c
commit a94df5ee19

View File

@ -84,7 +84,7 @@ export default function serverRequire(filePath) {
const moduleDescriptor = interpret.extensions[candidateExt];
if (registerCompiler(moduleDescriptor) === 0) {
if (moduleDescriptor !== null && registerCompiler(moduleDescriptor) === 0) {
logger.warn(`=> File ${candidatePath} is detected`);
logger.warn(` but impossible to import loader for ${candidateExt}`);