fix(core): update

This commit is contained in:
2020-10-02 13:29:40 +00:00
parent 2eddbf5751
commit a7adec8275
3 changed files with 17 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ export class VirtualDirectory {
public static async fromFsDirPath(pathArg: string) {
const newVirtualDir = new VirtualDirectory();
newVirtualDir.addSmartfiles(await fs.fileTreeToObject(pathArg, '**/*'));
};
}
constructor() {}
@@ -28,4 +28,4 @@ export class VirtualDirectory {
// TODO implement root shifting to get subdirectories as new virtual directories
// TODO implement root shifting to combine VirtualDirecotries in a parent virtual directory
}
}