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 1
1
prebuilds /fullsdk-linux
2
2
prebuilds /fullsdk-darwin
3
+ bin
3
4
out
4
5
* .iml
5
6
.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
2
2
import org.jetbrains.kotlin.gradle.targets.js.ir.DefaultIncrementalSyncTask
3
3
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig
4
4
@@ -12,7 +12,7 @@ val rootDirPath = project.rootDir.path
12
12
13
13
kotlin {
14
14
js {
15
- moduleName = " imageviewer"
15
+ outputModuleName = " imageviewer"
16
16
browser {
17
17
commonWebpackConfig {
18
18
outputFileName = " imageviewer.js"
@@ -24,7 +24,7 @@ kotlin {
24
24
25
25
@OptIn(ExperimentalWasmDsl ::class )
26
26
wasmJs {
27
- moduleName = " imageviewer"
27
+ outputModuleName = " imageviewer"
28
28
browser {
29
29
// TODO: uncomment when https://youtrack.jetbrains.com/issue/KT-68614 is fixed (it doesn't work with configuration cache)
30
30
// commonWebpackConfig {
Original file line number Diff line number Diff line change
1
+ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
1
2
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig
2
3
3
4
plugins {
@@ -10,9 +11,9 @@ group = "com.example"
10
11
version = " 1.0-SNAPSHOT"
11
12
12
13
kotlin {
13
- @OptIn(org.jetbrains.kotlin.gradle.targets.js.dsl. ExperimentalWasmDsl ::class )
14
+ @OptIn(ExperimentalWasmDsl ::class )
14
15
wasmJs {
15
- moduleName = " jetsnackwasmapp"
16
+ outputModuleName = " jetsnackwasmapp"
16
17
browser {
17
18
commonWebpackConfig {
18
19
outputFileName = " jetsnackwasmapp.js"
You can’t perform that action at this time.
0 commit comments