Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
sverhoeven committed Sep 20, 2024
1 parent 4c3c20a commit 875343c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ for (const file of await readdir("dist", { recursive: true })) {
const jsfn = "./dist/" + file;
// Each .js file has a corresponding .d.ts file
let types = jsfn.replace(/\.js$/, ".d.ts");
if (types === './dist/report.offline.d.ts') {
types = './dist/report.d.ts'
if (types === "./dist/report.offline.d.ts") {
types = "./dist/report.d.ts";
}
packageJson.exports[key] = {
import: {
Expand Down

0 comments on commit 875343c

Please sign in to comment.