Use the correct name in imports

This commit is contained in:
Andreas Hocevar
2017-09-12 15:33:23 +02:00
parent d0e9fd68ff
commit e876003684
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ function resolve(fromName, toName) {
}
const back = new Array(fromLength - commonDepth).join('../') || './';
let relative = back + toParts.slice(commonDepth).join('/').toLowerCase();
let relative = back + toParts.slice(commonDepth).join('/');
if (relative.endsWith('/')) {
relative += 'index';
}