Skip to content

Commit 37ea3c4

Browse files
committed
Prepare for next development iteration
1 parent f282550 commit 37ea3c4

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

build.gradle.kts

+8-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
**/
16+
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnLockMismatchReport
1617
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin
1718
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension
1819

@@ -33,8 +34,14 @@ allprojects {
3334
}
3435
}
3536

37+
@Suppress("PropertyName")
38+
val CHECK_PUBLICATION = findProperty("CHECK_PUBLICATION") != null
39+
3640
plugins.withType<YarnPlugin> {
3741
the<YarnRootExtension>().lockFileDirectory = rootDir.resolve(".kotlin-js-store")
42+
if (CHECK_PUBLICATION) {
43+
the<YarnRootExtension>().yarnLockMismatchReport = YarnLockMismatchReport.NONE
44+
}
3845
}
3946

4047
apiValidation {
@@ -43,7 +50,7 @@ apiValidation {
4350
@OptIn(kotlinx.validation.ExperimentalBCVApi::class)
4451
klib.enabled = findProperty("KMP_TARGETS") == null
4552

46-
if (findProperty("CHECK_PUBLICATION") != null) {
53+
if (CHECK_PUBLICATION) {
4754
ignoredProjects.add("check-publication")
4855
} else {
4956
ignoredProjects.add("benchmarks")

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ POM_DEVELOPER_ID=05nelsonm
2727
POM_DEVELOPER_NAME=Matthew Nelson
2828
POM_DEVELOPER_URL=https://github.com/05nelsonm/
2929

30-
VERSION_NAME=2.3.1
30+
VERSION_NAME=2.3.2-SNAPSHOT
3131
# 0.1.0-alpha01 = 00 01 00 11
3232
# 0.1.0-beta01 = 00 01 00 21
3333
# 0.1.0-rc01 = 00 01 00 31
3434
# 0.1.0 = 00 01 00 99
3535
# 1.1.0 = 01 01 00 99
36-
VERSION_CODE=02030199
36+
VERSION_CODE=02030299

0 commit comments

Comments
 (0)