|
1 | 1 | import org.jetbrains.kotlin.gradle.plugin.statistics.ReportStatisticsToElasticSearch.password |
2 | 2 |
|
3 | 3 | plugins { |
4 | | - kotlin("js") version "1.6.10" |
| 4 | + kotlin("js") version "1.6.20" |
5 | 5 | id("maven-publish") |
6 | 6 | id("io.codearte.nexus-staging") version "0.30.0" |
7 | 7 | signing |
8 | 8 | } |
9 | 9 |
|
10 | 10 | group = "com.github.ojaynico" |
11 | | -version = "1.1.9" |
| 11 | +version = "1.2.0" |
12 | 12 |
|
13 | 13 | val artifactName = project.name |
14 | 14 | val artifactGroup = project.group.toString() |
@@ -42,10 +42,10 @@ kotlin { |
42 | 42 | } |
43 | 43 |
|
44 | 44 | dependencies { |
45 | | - implementation("org.jetbrains.kotlin-wrappers:kotlin-react:17.0.2-pre.294-kotlin-1.6.10") |
46 | | - implementation("org.jetbrains.kotlin-wrappers:kotlin-extensions:1.0.1-pre.294-kotlin-1.6.10") |
47 | | - implementation(npm("react", "17.0.2")) |
48 | | - implementation(npm("react-native", "0.67.2")) |
| 45 | + implementation("org.jetbrains.kotlin-wrappers:kotlin-react:18.1.0-pre.333") |
| 46 | + implementation("org.jetbrains.kotlin-wrappers:kotlin-extensions:1.0.1-pre.333") |
| 47 | + implementation(npm("react", "18.1.0")) |
| 48 | + implementation(npm("react-native", "0.68.1")) |
49 | 49 | } |
50 | 50 |
|
51 | 51 | val sourcesJar by tasks.registering(Jar::class) { |
@@ -121,3 +121,9 @@ rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlu |
121 | 121 | rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> { |
122 | 122 | rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download = false // or true for default behavior |
123 | 123 | } |
| 124 | + |
| 125 | +allprojects { |
| 126 | + tasks.withType<org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask> { |
| 127 | + args += "--ignore-engines" |
| 128 | + } |
| 129 | +} |
0 commit comments