I am trying to use the sentry-cli to send our source bundle/source-map pairs. Our file names do not follow an easily “autodetectable” format. They are of the form:
filename-checksum.js
filename-different-checksum.js.map
As such, I would like to just do something like
sentry-cli files file1 sourcemap1 file2 sourcemap2
Basically, anything where I can just establish the relationship manually. I would prefer not to have to edit filename-checksum.js to include a sourceMapURL that won’t be accessible in production.