Skip to content

Commit

Permalink
[autorelease] [skip py] Update @yowasp/runtime and `@bytecodeallian…
Browse files Browse the repository at this point in the history
…ce/jco`.
  • Loading branch information
whitequark committed Jan 6, 2024
1 parent e052648 commit f511595
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
4 changes: 2 additions & 2 deletions npmjs-common/package-in.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
},
"types": "./lib/api.d.ts",
"devDependencies": {
"@bytecodealliance/jco": "^0.14.1",
"@yowasp/runtime": "5.0.28",
"@bytecodealliance/jco": "0.14.2",
"@yowasp/runtime": "6.0.30",
"esbuild": "^0.19.8"
},
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion npmjs-ecp5/lib/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ export type Tree = {
[name: string]: Tree | string | Uint8Array
};

export type OutputStream =
(bytes: Uint8Array | null) => void;

export class Exit extends Error {
code: number;
files: Tree;
}

export type Command = (args?: string[], files?: Tree, options?: {
printLine?: (line: string) => void,
stdout?: OutputStream | null,
stderr?: OutputStream | null,
decodeASCII?: boolean
}) => Promise<Tree>;

Expand Down
6 changes: 5 additions & 1 deletion npmjs-ice40/lib/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ export type Tree = {
[name: string]: Tree | string | Uint8Array
};

export type OutputStream =
(bytes: Uint8Array | null) => void;

export class Exit extends Error {
code: number;
files: Tree;
}

export type Command = (args?: string[], files?: Tree, options?: {
printLine?: (line: string) => void,
stdout?: OutputStream | null,
stderr?: OutputStream | null,
decodeASCII?: boolean
}) => Promise<Tree>;

Expand Down
6 changes: 5 additions & 1 deletion npmjs-machxo2/lib/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ export type Tree = {
[name: string]: Tree | string | Uint8Array
};

export type OutputStream =
(bytes: Uint8Array | null) => void;

export class Exit extends Error {
code: number;
files: Tree;
}

export type Command = (args?: string[], files?: Tree, options?: {
printLine?: (line: string) => void,
stdout?: OutputStream | null,
stderr?: OutputStream | null,
decodeASCII?: boolean
}) => Promise<Tree>;

Expand Down
6 changes: 5 additions & 1 deletion npmjs-nexus/lib/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ export type Tree = {
[name: string]: Tree | string | Uint8Array
};

export type OutputStream =
(bytes: Uint8Array | null) => void;

export class Exit extends Error {
code: number;
files: Tree;
}

export type Command = (args?: string[], files?: Tree, options?: {
printLine?: (line: string) => void,
stdout?: OutputStream | null,
stderr?: OutputStream | null,
decodeASCII?: boolean
}) => Promise<Tree>;

Expand Down

0 comments on commit f511595

Please sign in to comment.