Skip to content

Commit

Permalink
[1.0.2] Replaced emulation with vfs
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Jan 21, 2025
1 parent f485f42 commit 900ff64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/iso/fs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Backend } from '@zenfs/core/backends/backend.js';
import { S_IFDIR, S_IFREG } from '@zenfs/core/emulation/constants.js';
import { resolve } from '@zenfs/core/emulation/path.js';
import { S_IFDIR, S_IFREG } from '@zenfs/core/vfs/constants.js';
import { resolve } from '@zenfs/core/vfs/path.js';
import { Errno, ErrnoError } from '@zenfs/core/error.js';
import type { File } from '@zenfs/core/file.js';
import { LazyFile, isWriteable } from '@zenfs/core/file.js';
Expand Down
2 changes: 1 addition & 1 deletion src/zip/zip.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { S_IFDIR, S_IFREG } from '@zenfs/core/emulation/constants.js';
import { S_IFDIR, S_IFREG } from '@zenfs/core/vfs/constants.js';
import { Errno, ErrnoError } from '@zenfs/core/error.js';
import { Stats } from '@zenfs/core/stats.js';
import { deserialize, sizeof, struct, types as t } from 'utilium';
Expand Down

0 comments on commit 900ff64

Please sign in to comment.