Skip to content

Commit 9d09693

Browse files
huanghai21marionebl
authored andcommitted
fix(top-level): support git submodules (#784)
* fix: modify the parameters for the sander.readFile function (#448) * fix: modify the parameters for the sander.readFile function (#448) - prettier lint fix * fix: do NOT specify the .git to be a directory in case of the git submodule not able to work properly * fix: add a new function 'searchDotGit' to make sure we can find a correct .git path which can be file or directory (#784)
1 parent 492d330 commit 9d09693

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

@commitlint/top-level/src/index.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,21 @@ export default toplevel;
1414
* Find the next git root
1515
*/
1616
async function toplevel(cwd: string) {
17-
const found = await up('.git', {cwd, type: 'directory'});
17+
const found = await searchDotGit(cwd);
1818

1919
if (typeof found !== 'string') {
2020
return found;
2121
}
2222

2323
return path.join(found, '..');
2424
}
25+
26+
/**
27+
* Search .git, the '.git' can be a file(submodule), also can be a directory(normal)
28+
*/
29+
async function searchDotGit(cwd: string) {
30+
const foundFile = await up('.git', {cwd, type: 'file'});
31+
const foundDir = await up('.git', {cwd, type: 'directory'});
32+
33+
return foundFile || foundDir;
34+
}

0 commit comments

Comments
 (0)