Describe the bug
Relates to #1096
dependencies should not be required for transpiled ES Modules. This practice is acceptable, e.g. https://github.com/standard-things/esm/blob/master/package.json
Currently the build breaks: https://github.com/ipfs-shipyard/ipfs-geoip/actions/runs/3381199541/jobs/5614844080
Workaround:
dependencyCheck: {
input: [
'dist/**/*.js',
],
productionInput: [
'dist/**/*.js',
],
},