Seems that currently output from gradle js modules...
# javascript
a
Seems that currently output from gradle js modules is in
rootProject/build/js
Is there any easy way to change output to be in subModule dir? e.g.
submodule/build/dest
Usecase: firebase functions deployment. It requires all files of proper node project (packages.json, src, etc)
c
I guess you could easily create a task of type
Copy
which you could have your final task
dependOn
... Not sure if there's an easier way...