File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
**/
16
+ import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnLockMismatchReport
16
17
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin
17
18
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension
18
19
@@ -33,8 +34,14 @@ allprojects {
33
34
}
34
35
}
35
36
37
+ @Suppress(" PropertyName" )
38
+ val CHECK_PUBLICATION = findProperty(" CHECK_PUBLICATION" ) != null
39
+
36
40
plugins.withType<YarnPlugin > {
37
41
the<YarnRootExtension >().lockFileDirectory = rootDir.resolve(" .kotlin-js-store" )
42
+ if (CHECK_PUBLICATION ) {
43
+ the<YarnRootExtension >().yarnLockMismatchReport = YarnLockMismatchReport .NONE
44
+ }
38
45
}
39
46
40
47
apiValidation {
@@ -43,7 +50,7 @@ apiValidation {
43
50
@OptIn(kotlinx.validation.ExperimentalBCVApi ::class )
44
51
klib.enabled = findProperty(" KMP_TARGETS" ) == null
45
52
46
- if (findProperty( " CHECK_PUBLICATION" ) != null ) {
53
+ if (CHECK_PUBLICATION ) {
47
54
ignoredProjects.add(" check-publication" )
48
55
} else {
49
56
ignoredProjects.add(" benchmarks" )
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ POM_DEVELOPER_ID=05nelsonm
27
27
POM_DEVELOPER_NAME =Matthew Nelson
28
28
POM_DEVELOPER_URL =https://github.com/05nelsonm/
29
29
30
- VERSION_NAME =2.3.1
30
+ VERSION_NAME =2.3.2-SNAPSHOT
31
31
# 0.1.0-alpha01 = 00 01 00 11
32
32
# 0.1.0-beta01 = 00 01 00 21
33
33
# 0.1.0-rc01 = 00 01 00 31
34
34
# 0.1.0 = 00 01 00 99
35
35
# 1.1.0 = 01 01 00 99
36
- VERSION_CODE =02030199
36
+ VERSION_CODE =02030299
You can’t perform that action at this time.
0 commit comments