Skip to content

Commit

Permalink
Updated core and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Nov 3, 2024
1 parent dcc2266 commit f168090
Show file tree
Hide file tree
Showing 7 changed files with 147 additions and 64 deletions.
191 changes: 137 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"@zenfs/core": "^1.0.10",
"@zenfs/dom": "^0.2.17",
"@zenfs/iso": "^0.3.0",
"@zenfs/zip": "^0.5.1",
"@zenfs/core": "^1.1.0",
"@zenfs/dom": "^1.0.0",
"@zenfs/iso": "^0.3.3",
"@zenfs/zip": "^0.5.2",
"chalk": "^5.3.0",
"jquery": "^3.7.1",
"utilium": "^0.8.8"
"utilium": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
Expand Down
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/emulation/path.js';
import { cd, cwd, resolve } from '@zenfs/core/path';
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/emulation/path.js';
import { cwd, dirname, join } from '@zenfs/core/path';
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/emulation/path.js';
import { cwd, isAbsolute } from '@zenfs/core/path';
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/emulation/path.js';
import * as path from '@zenfs/core/path';
import chalk from 'chalk';
import $ from 'jquery';
import { createShell } from 'utilium/shell.js';
Expand Down
2 changes: 1 addition & 1 deletion system/bin/lib.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { fs as _fs, resolveMountConfig } from '@zenfs/core';
import type * as _path from '@zenfs/core/emulation/path.js';
import type * as _path from '@zenfs/core/path';
import type { Terminal } from '@xterm/xterm';

declare global {
Expand Down

0 comments on commit f168090

Please sign in to comment.