i have this module
import * as cborg from 'cborg'
import { CID } from 'multiformats/cid'
function cidEncoder (obj) {
}
....
when i build module with this command line
"bundle": "./node_modules/.bin/esbuild ./dist/index.mjs --bundle --outfile=./dist/out.mjs",
I have bundle without export default
when i build module with this command line
"build": "./node_modules/.bin/esbuild ./src/index.js --target=es2020 --outfile=./dist/index.mjs",
This import not include in module
import * as cborg from 'cborg'
import { CID } from 'multiformats/cid'
How can i create module with include all modules in one file ?