Vinod Rai
10/23/2020, 6:13 AMCould not create an instance of type org.jetbrains.kotlin.gradle.targets.js.subtargets.KotlinBrowserJs.
> Failed to apply plugin [class 'org.gradle.language.base.plugins.LifecycleBasePlugin']
> Cannot add task 'clean' as a task with that name already exists.
Here is the common code Gradle for js source.
js {
moduleName = "EmtCore"
binaries.executable()
browser {
webpackTask {
outputFileName = "$moduleName.js"
}
runTask {
outputFileName = "$moduleName.js"
}
}
}
can anyone guide how to generate .js filexxfast
06/09/2021, 2:27 AM