Skip to content

Commit 777e0b2

Browse files
Merge pull request #7 from maerten/fix-parentfolder-check
Fix parentfolder check
2 parents f7e2c10 + f5d68c6 commit 777e0b2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ function isParentFolder(relativeFilePath, context, rootDir) {
44
const absoluteRootPath = context.getCwd() + (rootDir !== '' ? path.sep + rootDir : '');
55
const absoluteFilePath = path.join(path.dirname(context.getFilename()), relativeFilePath)
66

7-
return relativeFilePath.startsWith("../") && (rootDir === '' || absoluteFilePath.startsWith(absoluteRootPath));
7+
return relativeFilePath.startsWith("../") && (
8+
rootDir === '' ||
9+
(absoluteFilePath.startsWith(absoluteRootPath) &&
10+
context.getFilename().startsWith(absoluteRootPath))
11+
);
812
}
913

1014
function isSameFolder(path) {

0 commit comments

Comments
 (0)