Compare commits

..

2 Commits

Author SHA1 Message Date
f5ffb7fc67 4.2.15 2017-05-27 02:54:25 +02:00
36364bb490 listFileTree now includes dots 2017-05-27 02:54:22 +02:00
3 changed files with 6 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "smartfile",
"version": "4.2.14",
"version": "4.2.15",
"description": "offers smart ways to work with files in nodejs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

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) {