Skip to content

Commit

Permalink
Update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Akim Mamedov committed Dec 15, 2023
1 parent c4b0d49 commit 9aebe2b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 39 deletions.
43 changes: 8 additions & 35 deletions marine-js/npm-package/package-lock.json

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

2 changes: 1 addition & 1 deletion marine-js/npm-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
},
"private": false,
"dependencies": {
"@wasmer/wasi": "0.12.0",
"@wasmer/wasi": "1.2.2",
"@wasmer/wasmfs": "0.12.0",
"default-import": "1.1.5"
},
Expand Down
6 changes: 3 additions & 3 deletions marine-js/npm-package/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import { WASIArgs, WASIEnv } from '@wasmer/wasi';
import { WasiConfig } from '@wasmer/wasi';

export interface MarineServiceConfig {
/**
Expand Down Expand Up @@ -55,9 +55,9 @@ export interface MarineModuleConfig {
logging_mask: number;
}

export type Env = WASIEnv;
export type Env = NonNullable<WasiConfig['env']>;

export type Args = WASIArgs;
export type Args = NonNullable<WasiConfig['args']>;

export interface MarineWASIConfig {
/**
Expand Down

0 comments on commit 9aebe2b

Please sign in to comment.