@componentor/fs 3.0.26 → 3.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +308 -60
- package/dist/index.js +951 -164
- package/dist/index.js.map +1 -1
- package/dist/workers/repair.worker.js +1 -2
- package/dist/workers/repair.worker.js.map +1 -1
- package/dist/workers/server.worker.js +1 -2
- package/dist/workers/server.worker.js.map +1 -1
- package/dist/workers/sync-relay.worker.js +14 -5
- package/dist/workers/sync-relay.worker.js.map +1 -1
- package/package.json +1 -1
|
@@ -938,8 +938,7 @@ var VFSEngine = class {
|
|
|
938
938
|
const mode = DEFAULT_DIR_MODE & ~(this.umask & 511);
|
|
939
939
|
this.createInode(path, INODE_TYPE.DIRECTORY, mode, 0);
|
|
940
940
|
this.commitPending();
|
|
941
|
-
|
|
942
|
-
return { status: 0, data: pathBytes };
|
|
941
|
+
return { status: 0, data: null };
|
|
943
942
|
}
|
|
944
943
|
mkdirRecursive(path) {
|
|
945
944
|
const parts = path.split("/").filter(Boolean);
|