relatedly, is there a list of what the different j...
# javascript
j
relatedly, is there a list of what the different js gradle targets do? i couldn't find one in the docs, and I have not been able to guess from the names, e.g. I would not expect jsProductionRun to generate something that shows a big black overlay listing the compiler warnings
b
jsProductionSomething tasks use webpack production mode (google on what that means in js world) whereas jsDevelopmentSomething use webpack development mode and also some less stable kotlin compiler tricks to squeeze out some more speed.
🙏 1