We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e8a0f commit 8ac8982Copy full SHA for 8ac8982
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@secjs/utils",
3
- "version": "1.4.4",
+ "version": "1.4.5",
4
"description": "",
5
"license": "MIT",
6
"author": "João Lenon",
src/Classes/Folder.ts
@@ -647,7 +647,7 @@ export class Folder {
647
const name = resolve(path, dirent.name)
648
649
if (dirent.isDirectory()) {
650
- folders.push(new Folder(name).load())
+ folders.push(new Folder(name).load({ withFileContent }))
651
652
return
653
}
0 commit comments