Let's say a have a KotlinJS (Node library) project...
# javascript
e
Let's say a have a KotlinJS (Node library) project with the following structure:
Copy code
parent-project (no code)
 > moduleA
 > moduleB
Where
moduleB
depends on
moduleA
. When I build
moduleB
, will the bundler also include all the code from
moduleA
? Can I build
moduleB
in a way it will pick up
moduleA
from its npm coordinates once I publish it?