aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/esm/second-child.mjs
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-06-07 22:42:12 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-06-07 22:42:12 -0700
commit5b4dcb8d169f0463df83624a25b004636f3516d9 (patch)
treeca90187af3b4a8a8bb314bbc0d412f79681ab2e8 /integration/bunjs-only-snippets/esm/second-child.mjs
parentcdd1a2bdc09105e9be0947c8c7990b1a7c737611 (diff)
downloadbun-5b4dcb8d169f0463df83624a25b004636f3516d9.tar.gz
bun-5b4dcb8d169f0463df83624a25b004636f3516d9.tar.zst
bun-5b4dcb8d169f0463df83624a25b004636f3516d9.zip
log esm import order
Diffstat (limited to 'integration/bunjs-only-snippets/esm/second-child.mjs')
-rw-r--r--integration/bunjs-only-snippets/esm/second-child.mjs5
1 files changed, 5 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/esm/second-child.mjs b/integration/bunjs-only-snippets/esm/second-child.mjs
new file mode 100644
index 000000000..5fb06ed45
--- /dev/null
+++ b/integration/bunjs-only-snippets/esm/second-child.mjs
@@ -0,0 +1,5 @@
+import { start, end } from "./startEnd.mjs";
+
+start("Second (nested import)");
+
+end("Second (nested import)");