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 15878e3 commit fabecbf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { configure, Fetch, fs, InMemory, Overlay } from '@zenfs/core';
import { cd, cwd, resolve } from '@zenfs/core/path';
import { cd, cwd, resolve } from '@zenfs/core/emulation/path.js';
import $ from 'jquery';
import * as editor from './editor.js';
import { update as updateExplorer } from './explorer.js';
Expand Down
2 changes: 1 addition & 1 deletion src/explorer.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { fs } from '@zenfs/core';
import { cwd, dirname, join } from '@zenfs/core/path';
import { cwd, dirname, join } from '@zenfs/core/emulation/path.js';
import $ from 'jquery';
import { formatCompact } from 'utilium';
import { cloneTemplate } from 'utilium/dom.js';
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './config.js';
import './editor.js';
import { location } from './explorer.js';
import './shell.js';
import { cwd, isAbsolute } from '@zenfs/core/path';
import { cwd, isAbsolute } from '@zenfs/core/emulation/path.js';
import { fs } from '@zenfs/core';
import { openPath, switchTab } from './common.js';

Expand Down
2 changes: 1 addition & 1 deletion src/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { WebLinksAddon } from '@xterm/addon-web-links';
import { Terminal } from '@xterm/xterm';
import { resolveMountConfig as __mount_resolve, fs } from '@zenfs/core';
import { X_OK } from '@zenfs/core/emulation/constants.js';
import * as path from '@zenfs/core/path';
import * as path from '@zenfs/core/emulation/path.js';
import chalk from 'chalk';
import $ from 'jquery';
import { createShell } from 'utilium/shell.js';
Expand Down

0 comments on commit fabecbf

Please sign in to comment.