From 162dd18ddd0dec3b339ed35d09af2c3d01c0aa0a Mon Sep 17 00:00:00 2001 From: Masaki Kobayashi Date: Sun, 1 Dec 2024 18:39:20 +0900 Subject: [PATCH] chore: test --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 453c7ec..30316ad 100755 --- a/src/index.ts +++ b/src/index.ts @@ -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: + prod + "foobar", ); console.log(`Compiled ${path.basename(filepath)}`); } catch (err) {