Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobayashime committed Dec 1, 2024
1 parent 6010ff2 commit 162dd18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ const build = async ({ inputsGlob, distDir }: BuildProps) => {
const { prod } = await compile(filepath);
await writeFile(
path.resolve(distDir, path.basename(filepath).replace(/.ts$/, ".js")),
prod,
// biome-ignore lint/style/useTemplate: <explanation>
prod + "foobar",
);
console.log(`Compiled ${path.basename(filepath)}`);
} catch (err) {
Expand Down

0 comments on commit 162dd18

Please sign in to comment.