You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
This commit is contained in:
committed by
GitHub
parent
0b63ba1a28
commit
64684dc896
@ -12,7 +12,12 @@ async function processDirectory(dir, indexFilePath = null, typeScriptType = null
|
||||
|
||||
const tsFiles = glob.sync('{**/*.ts,**/*.tsx}', {
|
||||
cwd: dir,
|
||||
}).filter(f => `${dir}/${f}` !== indexFilePath);
|
||||
}).filter(f => `${dir}/${f}` !== indexFilePath)
|
||||
//
|
||||
// Exclude Jest test files to
|
||||
// not include them in index.ts
|
||||
//
|
||||
.filter(f => !f.endsWith('.test.ts'));
|
||||
|
||||
tsFiles.sort();
|
||||
|
||||
|
Reference in New Issue
Block a user