File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
integration-testing/smokeTest Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,18 @@ repositories {
7
7
mavenLocal()
8
8
mavenCentral()
9
9
maven { url " https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
10
+ // This is bootstrap wasm repo, remove it as regular atomic-fu will be published
11
+ maven { url " https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental" }
10
12
}
11
13
12
14
kotlin {
13
15
jvm()
14
16
js(IR ) {
15
17
nodejs()
16
18
}
19
+ wasm() {
20
+ nodejs()
21
+ }
17
22
18
23
sourceSets {
19
24
commonMain {
@@ -50,3 +55,13 @@ kotlin {
50
55
}
51
56
}
52
57
58
+ // This is bootstrap atomicFU version with wasm support, remove it as regular atomic-fu will be published
59
+ allprojects {
60
+ configurations. all {
61
+ resolutionStrategy. eachDependency { DependencyResolveDetails details ->
62
+ if (details. requested. name == ' atomicfu-wasm' ) {
63
+ details. useVersion ' 0.21.0-wasm0'
64
+ }
65
+ }
66
+ }
67
+ }
You can’t perform that action at this time.
0 commit comments