Skip to content

Commit

Permalink
chore: fix applyPreset import
Browse files Browse the repository at this point in the history
  • Loading branch information
wemeetagain committed Oct 2, 2023
1 parent ff2fb5c commit 3596ab8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

// MUST import first to apply preset from args and set ssz hasher
import("./applyPreset.js");
import "./applyPreset.js";
import {YargsError} from "./util/index.js";
import {getLodestarCli, yarg} from "./cli.js";
import "source-map-support/register.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/prover/src/cli/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

// MUST import first to apply preset from args and set ssz hasher
import("./applyPreset.js");
import "./applyPreset.js";
import {YargsError} from "../utils/errors.js";
import {getLodestarProverCli, yarg} from "./cli.js";
import "source-map-support/register.js";
Expand Down

0 comments on commit 3596ab8

Please sign in to comment.