Skip to content

Commit

Permalink
Merge pull request #92 from gzm0/fix-esm
Browse files Browse the repository at this point in the history
fix: wire --esm cli flag to options
  • Loading branch information
dderevjanik authored Jul 30, 2024
2 parents 5058989 + 3fd9a16 commit 60b0d20
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 60b0d20

Please # to comment.