Skip to content

Commit f30f500

Browse files
fixed a mistake I made when changing packageRoot to currentPackage
1 parent e9215bc commit f30f500

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/transpilation/resolve.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class ResolutionContext {
196196
return fileFromPath;
197197
} else {
198198
// Did not find file at current root, try again one directory deeper
199-
currentPackage = path.join(packageRoot, splitPath[packageRootIndex++]);
199+
currentPackage = path.join(currentPackage, splitPath[packageRootIndex++]);
200200
}
201201
}
202202

0 commit comments

Comments
 (0)