Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb committed Sep 30, 2024
1 parent c4ecf47 commit 7f8957a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ export type CompareOutput = {
};

export const compare = (input: CompareInput): EventEmitter => {
const args = Object.entries(input).flatMap(([k, v]) => [k, String(v)]);
const args = Object.entries(input).flatMap(([k, v]) => [`--${k}`, String(v)]);
return run(args);
};
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reg-cli",
"version": "0.0.0-experimental-wasm1",
"version": "0.0.0-experimental-wasm3",
"description": "",
"type": "module",
"start": "node ./dist/cli.mjs",
Expand Down

0 comments on commit 7f8957a

Please sign in to comment.