From 5b4dcb8d169f0463df83624a25b004636f3516d9 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Tue, 7 Jun 2022 22:42:12 -0700 Subject: log esm import order --- integration/bunjs-only-snippets/esm/startEnd.mjs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 integration/bunjs-only-snippets/esm/startEnd.mjs (limited to 'integration/bunjs-only-snippets/esm/startEnd.mjs') diff --git a/integration/bunjs-only-snippets/esm/startEnd.mjs b/integration/bunjs-only-snippets/esm/startEnd.mjs new file mode 100644 index 000000000..8b5549802 --- /dev/null +++ b/integration/bunjs-only-snippets/esm/startEnd.mjs @@ -0,0 +1,6 @@ +export function start(name) { + console.log(`[start] ${name}`); +} +export function end(name) { + console.log(`[end] ${name}`); +} -- cgit v1.2.3