diff options
author | 2022-01-21 21:03:06 -0800 | |
---|---|---|
committer | 2022-01-21 21:03:06 -0800 | |
commit | f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3 (patch) | |
tree | c2cae3c93d89a2b25d52248dc5ea3cad1e637b32 /integration/bunjs-only-snippets/bundled/entrypoint.ts | |
parent | 3e803b3a58e1d655e8a3e3c4a92fb0e40016dec8 (diff) | |
download | bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.tar.gz bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.tar.zst bun-f7f2f6e6b8f9a571b291fecf0e27b116b1a715c3.zip |
more tests
Diffstat (limited to 'integration/bunjs-only-snippets/bundled/entrypoint.ts')
-rw-r--r-- | integration/bunjs-only-snippets/bundled/entrypoint.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/bundled/entrypoint.ts b/integration/bunjs-only-snippets/bundled/entrypoint.ts new file mode 100644 index 000000000..b9a17b538 --- /dev/null +++ b/integration/bunjs-only-snippets/bundled/entrypoint.ts @@ -0,0 +1,13 @@ +import "i-am-bundled/cjs"; +import "i-am-bundled/esm"; +import "always-bundled-module/esm"; +import "always-bundled-module/cjs"; +import { foo } from "i-am-bundled/esm"; +import { foo as foo2 } from "always-bundled-module/esm"; +import cJS from "always-bundled-module/cjs"; + +foo(); +foo2(); +cJS(); + +export default cJS(); |