feat(smartfs): Integrate @push.rocks/smartfs and wire SmartFileFactory.nodeFs to return a real SmartFs instance

This commit is contained in:
2025-11-29 17:42:44 +00:00
parent ff620acece
commit 055b78e5ea
6 changed files with 15 additions and 14 deletions

View File

@@ -14,9 +14,7 @@ export class SmartFileFactory {
* Creates a default factory using Node.js filesystem provider
*/
public static nodeFs(): SmartFileFactory {
// Temporarily using a placeholder - will be replaced with actual SmartFs initialization
// const smartFs = new SmartFs(new SmartFsProviderNode());
const smartFs = null; // Placeholder
const smartFs = new plugins.smartfs.SmartFs(new plugins.smartfs.SmartFsProviderNode());
return new SmartFileFactory(smartFs);
}