CLOVIS
10/24/2022, 9:40 PMsrc/main/resources
, maven-publish
correctly adds it to the generated .klib
, but it doesn't seem like a downstream project can access it, it is extracted in /build/tmp/expandedArchives
but doesn't seem to be copied anywhere. Do you know how the downstream library can use it? I expected it to appear in build/js/packages/<module>
since that's where Webpack executes.Derek Ellis
10/24/2022, 9:45 PMbuild/copiedResources
) and then set up some copy tasks in your gradle config that run and copy those resources into that new resources directory
then when you run any webpack tasks, those resources will automatically be copied into your build outputCLOVIS
10/24/2022, 9:53 PMCLOVIS
10/24/2022, 9:54 PMDerek Ellis
10/24/2022, 9:55 PMRobert Jaros
10/25/2022, 3:56 AM