diff options
Diffstat (limited to 'integration/bunjs-only-snippets/esm/first.mjs')
-rw-r--r-- | integration/bunjs-only-snippets/esm/first.mjs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/esm/first.mjs b/integration/bunjs-only-snippets/esm/first.mjs new file mode 100644 index 000000000..17021c623 --- /dev/null +++ b/integration/bunjs-only-snippets/esm/first.mjs @@ -0,0 +1,8 @@ +import { end, start } from "./startEnd.mjs"; + +start("First"); + +import "./second.mjs"; +import "./third.mjs"; + +end("First"); |