i have a kotlin library that vendors a .json file ...
# announcements
d
i have a kotlin library that vendors a .json file and parses it on demand to build an in-memory datastructure. right now my library loads
File("./node_modules/mime-db/db.json")
which doesn't work when using my library from another project. what's the right way to include this sort of files in my library jar and then load it from my library?