Skip to content

Commit

Permalink
chore: remove extra "\n" in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Sep 19, 2024
1 parent 05dae70 commit 228253c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ for (let name of packages) {
}

let qq = s.snip(src.start, src.start + 1);
stmt += ` = require(${qq + from + qq});\n`;
stmt += ` = require(${qq + from + qq});`;
s.overwrite(start, end, stmt);
},
ExportDefaultDeclaration(n) {
Expand Down

0 comments on commit 228253c

Please sign in to comment.