diff options
author | 2021-06-06 18:34:01 -0700 | |
---|---|---|
committer | 2021-06-06 18:34:01 -0700 | |
commit | d49e0a5fa129152c27b70a57d1cc7a2af770577c (patch) | |
tree | 1ac581bda71fec5dfd09a6ab508a1adfca80b358 /src/test/fixtures/export-from.js | |
parent | e66466cc1a453db1370a199a32729441747761bb (diff) | |
download | bun-d49e0a5fa129152c27b70a57d1cc7a2af770577c.tar.gz bun-d49e0a5fa129152c27b70a57d1cc7a2af770577c.tar.zst bun-d49e0a5fa129152c27b70a57d1cc7a2af770577c.zip |
WIP node module bundles
Former-commit-id: 797b2ff557542e9d318c953b840b102695711888
Diffstat (limited to 'src/test/fixtures/export-from.js')
-rw-r--r-- | src/test/fixtures/export-from.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/fixtures/export-from.js b/src/test/fixtures/export-from.js new file mode 100644 index 000000000..aff2d3309 --- /dev/null +++ b/src/test/fixtures/export-from.js @@ -0,0 +1,2 @@ +export { foo } from "export-from-target"; +export { foo as bar } from "export-from-target"; |