Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d2d4432

Browse files
Artem.KobzarArtem.Kobzar
Artem.Kobzar
authored and
Artem.Kobzar
committedMar 10, 2025
Remove unnecessery artifacts
1 parent b4a8b74 commit d2d4432

14 files changed

+4
-298
lines changed
 

Diff for: ‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ gradle-app.setting
1313
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
1414
# gradle/wrapper/gradle-wrapper.properties
1515
/.idea/
16-
/kotlin-js-store/
16+
/kotlin-js-store/
17+
/.kotlin/

Diff for: ‎.kotlin/errors/errors-1741597003824.log

-73
This file was deleted.

Diff for: ‎.kotlin/errors/errors-1741597013176.log

-73
This file was deleted.

Diff for: ‎.kotlin/errors/errors-1741597078608.log

-73
This file was deleted.

Diff for: ‎.kotlin/errors/errors-1741597119505.log

-73
This file was deleted.

Diff for: ‎build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
33
import org.jetbrains.kotlin.gradle.tasks.KotlinCompileCommon
44

55
plugins {
6-
kotlin("multiplatform") version "2.2.255-SNAPSHOT"
6+
kotlin("multiplatform") version "2.2.0"
77
`maven-publish`
88
signing
99
}
@@ -28,7 +28,6 @@ afterEvaluate {
2828

2929
repositories {
3030
mavenCentral()
31-
mavenLocal()
3231
}
3332

3433
val artifactId = "kotlinx-browser"

Diff for: ‎generator/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ plugins {
55
repositories {
66
mavenCentral()
77
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies")
8-
mavenLocal()
98
}
109

1110
dependencies {

Diff for: ‎settings.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
pluginManagement {
22
repositories {
33
gradlePluginPortal()
4-
mavenLocal()
54
}
65
plugins {
7-
kotlin("multiplatform").version("2.2.255-SNAPSHOT")
6+
kotlin("multiplatform").version("2.2.0")
87
}
98
}
109

0 commit comments

Comments
 (0)
Please sign in to comment.