File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11prebuilds /fullsdk-linux
22prebuilds /fullsdk-darwin
3+ bin
34out
45* .iml
56.gradle
Original file line number Diff line number Diff line change 1- import org.jetbrains.kotlin.gradle.targets.js.dsl. ExperimentalWasmDsl
1+ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
22import org.jetbrains.kotlin.gradle.targets.js.ir.DefaultIncrementalSyncTask
33import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig
44
@@ -12,7 +12,7 @@ val rootDirPath = project.rootDir.path
1212
1313kotlin {
1414 js {
15- moduleName = " imageviewer"
15+ outputModuleName = " imageviewer"
1616 browser {
1717 commonWebpackConfig {
1818 outputFileName = " imageviewer.js"
@@ -24,7 +24,7 @@ kotlin {
2424
2525 @OptIn(ExperimentalWasmDsl ::class )
2626 wasmJs {
27- moduleName = " imageviewer"
27+ outputModuleName = " imageviewer"
2828 browser {
2929 // TODO: uncomment when https://youtrack.jetbrains.com/issue/KT-68614 is fixed (it doesn't work with configuration cache)
3030// commonWebpackConfig {
Original file line number Diff line number Diff line change 1+ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
12import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig
23
34plugins {
@@ -10,9 +11,9 @@ group = "com.example"
1011version = " 1.0-SNAPSHOT"
1112
1213kotlin {
13- @OptIn(org.jetbrains.kotlin.gradle.targets.js.dsl. ExperimentalWasmDsl ::class )
14+ @OptIn(ExperimentalWasmDsl ::class )
1415 wasmJs {
15- moduleName = " jetsnackwasmapp"
16+ outputModuleName = " jetsnackwasmapp"
1617 browser {
1718 commonWebpackConfig {
1819 outputFileName = " jetsnackwasmapp.js"
You can’t perform that action at this time.
0 commit comments