Skip to content

Commit

Permalink
fix: wire --esm cli flag to options
Browse files Browse the repository at this point in the history
Likely forgotten in bde0490.
Fixes #91.
  • Loading branch information
gzm0 committed Jul 30, 2024
1 parent 5058989 commit 3fd9a16
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ if (conf.caseInsensitiveNames) {
options.caseInsensitiveNames = conf.caseInsensitiveNames;
}

if (conf.esm) {
options.esm = conf.esm;
}

Logger.debug("Options");
Logger.debug(JSON.stringify(options, null, 2));

Expand Down

0 comments on commit 3fd9a16

Please # to comment.