listFileTree now includes dots

This commit is contained in:
Philipp Kunz 2017-05-27 02:54:22 +02:00
parent 52f8fd2469
commit 36364bb490
2 changed files with 5 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -376,7 +376,8 @@ export let listFileTree = (dirPathArg: string, miniMatchFilter: string): Promise
let options = {
cwd: dirPath,
nodir: true
nodir: true,
dot: true
}
plugins.glob(miniMatchFilter, options, (err, files: string[]) => {
if (err) {