Skip to content

Commit 6a13e33

Browse files
fix leading slash (#19)
* fix leading slash * Update package.json Co-authored-by: Melvin Vermeer <[email protected]>
1 parent 984dd96 commit 6a13e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function getAbsolutePath(relativePath, context, rootDir, prefix) {
2424
path.join(path.dirname(context.getFilename()), relativePath)
2525
)
2626
.split(path.sep)
27-
].join("/");
27+
].filter(String).join("/");
2828
}
2929

3030
const message = "import statements should have an absolute path";

0 commit comments

Comments
 (0)