Skip to content

Commit

Permalink
Changed import: @zenfs/core/path -> @zenfs/core/emulation/path.js
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Jan 7, 2025
1 parent 660b7d5 commit 41f3a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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/path';
import { resolve } from '@zenfs/core/emulation/path.js';
import { Errno, ErrnoError } from '@zenfs/core/error.js';
import { NoSyncFile, isWriteable } from '@zenfs/core/file.js';
import { FileSystem, type FileSystemMetadata } from '@zenfs/core/filesystem.js';
Expand Down
2 changes: 1 addition & 1 deletion src/zip/fs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NoSyncFile, Stats, isWriteable } from '@zenfs/core';
import type { Backend } from '@zenfs/core/backends/backend.js';
import { S_IFDIR } from '@zenfs/core/emulation/constants.js';
import { parse } from '@zenfs/core/path';
import { parse } from '@zenfs/core/emulation/path.js';
import { Errno, ErrnoError } from '@zenfs/core/error.js';
import { FileSystem, type FileSystemMetadata } from '@zenfs/core/filesystem.js';
import { FileEntry, Header } from './zip.js';
Expand Down

0 comments on commit 41f3a48

Please sign in to comment.