glade
01/21/2020, 9:32 PMtasks {
withType<KotlinJsDce> {
dceOptions {
devMode = false
}
// NOTE: Keep settings don't seem to work at all. Have tried each individually, and normal package/namespace expressions.
keep("com.gigwell.PresetType", "com.gigwell", "com.gigwell.*")
}
}
This is currently being invoked via the webpackTask but I’m guessing this is more my misunderstanding of the dce parameter?Ivan Kubyshkin [JetBrains]
01/22/2020, 9:51 AM<js-file-name>.<fqn>
e.g "<http://my-test-project.com|my-test-project.com>.gigwell.PresetType"
bashor
01/22/2020, 3:39 PMbashor
01/22/2020, 3:40 PM<module-name>.path.to.mypackage
glade
01/22/2020, 6:23 PM