Hi, is there a way to skip npm/webpack when buildi...
# javascript
r
Hi, is there a way to skip npm/webpack when building kotlin/js? We don't use any npm dependencies and I really liked how kotlin2js used to work, where it generated one js file for each module. Is it still possible to generate javascript output in this way?
t
Which Kotlin version do you use?
r
We use 1.6.0-RC with multiplatform plugin
t
IR?
r
We use both, IR for deployment and sometimes legacy for development.
t
1. To disable NPM - disable kotlinNpmInstall task in root 2. To disable webpack in legacy - see here 3. To disable webpack in IR - don’t use
binaries.executable()
r
Ah great, we will try this out, thx!