From 57b8a8dc2aec9d98e791e874b1aa605dbd8f8fcf Mon Sep 17 00:00:00 2001 From: Don Isaac Date: Mon, 9 Dec 2024 11:46:06 -0800 Subject: [PATCH] fix entrypoint name --- test/bundler/native-plugin.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bundler/native-plugin.test.ts b/test/bundler/native-plugin.test.ts index deb1e70d4b..337195ec3e 100644 --- a/test/bundler/native-plugin.test.ts +++ b/test/bundler/native-plugin.test.ts @@ -127,7 +127,7 @@ values;`, const result = await Bun.build({ outdir, - entrypoints: [path.join(tempdir, entrypoint)], + entrypoints: [path.join(tempdir, "index.ts")], plugins: [ { name: "xXx123_foo_counter_321xXx",