react-native-acoustic-connect-beta 16.0.38 → 16.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"react": "18.2.0",
|
|
16
16
|
"react-dom": "18.2.0",
|
|
17
17
|
"react-native": "0.72.10",
|
|
18
|
-
"react-native-acoustic-connect-beta": "16.0.
|
|
18
|
+
"react-native-acoustic-connect-beta": "16.0.40",
|
|
19
19
|
"react-native-gesture-handler": "~2.12.0",
|
|
20
20
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
21
21
|
"react-native-reanimated": "~3.3.0",
|
package/Jenkinsfile
CHANGED
|
@@ -563,13 +563,11 @@ def checkoutRepos() {
|
|
|
563
563
|
}
|
|
564
564
|
}
|
|
565
565
|
|
|
566
|
-
def gitPush(path, commitMsg, tagMsg, branch, commitMsg2
|
|
566
|
+
def gitPush(path, commitMsg, tagMsg, branch, commitMsg2) {
|
|
567
567
|
echo "Git Push for: ${path}"
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
}
|
|
572
|
-
|
|
568
|
+
runCMD('''cd \"''' + path + '''\" && git add . -A''')
|
|
569
|
+
runCMD('''cd \"''' + path + '''\" && git commit -a -m \"''' + commitMsg + '''\" -m \"''' + commitMsg2 + '''\"''')
|
|
570
|
+
|
|
573
571
|
// Tag repos
|
|
574
572
|
echo "Tag repos"
|
|
575
573
|
runCMD('''cd \"''' + path + '''\" && git tag -f \"''' + tagMsg + '''\" -m \"''' + commitMsg2 + '''\"''')
|
|
@@ -608,7 +606,7 @@ def publishBeta() {
|
|
|
608
606
|
echo commitDesciption
|
|
609
607
|
|
|
610
608
|
// push repos
|
|
611
|
-
gitPush("${buildDir}", commitMsg, currentVersion, srcBranch, commitDesciption
|
|
609
|
+
gitPush("${buildDir}", commitMsg, currentVersion, srcBranch, commitDesciption)
|
|
612
610
|
}
|
|
613
611
|
|
|
614
612
|
def publishRelease() {
|
|
@@ -659,8 +657,8 @@ def publishRelease() {
|
|
|
659
657
|
echo commitDesciption
|
|
660
658
|
|
|
661
659
|
// push repos
|
|
662
|
-
gitPush("${releaseDir}", commitMsg, currentVersion, "main", commitDesciption
|
|
663
|
-
gitPush("${buildDir}", commitMsg, currentVersion, srcBranch, commitDesciption
|
|
660
|
+
gitPush("${releaseDir}", commitMsg, currentVersion, "main", commitDesciption)
|
|
661
|
+
// gitPush("${buildDir}", commitMsg, currentVersion, srcBranch, commitDesciption)
|
|
664
662
|
}
|
|
665
663
|
|
|
666
664
|
def populateSlackMessageGlobalVariables() {
|
|
@@ -692,8 +690,12 @@ def getSlackReport(isRelease) {
|
|
|
692
690
|
populateSlackMessageGlobalVariables()
|
|
693
691
|
|
|
694
692
|
def releaseTitle = ""
|
|
693
|
+
def slackTitle = "Beta build"
|
|
694
|
+
def npmUrl = "https://www.npmjs.com/package/react-native-acoustic-connect-beta"
|
|
695
695
|
if (isRelease) {
|
|
696
696
|
releaseTitle = "********************Release********************\n"
|
|
697
|
+
slackTitle = "Release build"
|
|
698
|
+
npmUrl = "https://www.npmjs.com/package/react-native-acoustic-connect"
|
|
697
699
|
}
|
|
698
700
|
|
|
699
701
|
echo "currentBuild.result:${currentBuild.result}"
|
|
@@ -741,8 +743,8 @@ def getSlackReport(isRelease) {
|
|
|
741
743
|
short: true
|
|
742
744
|
],
|
|
743
745
|
[
|
|
744
|
-
title: "
|
|
745
|
-
value: "
|
|
746
|
+
title: "${slackTitle}",
|
|
747
|
+
value: "${npmUrl}",
|
|
746
748
|
short: false
|
|
747
749
|
],
|
|
748
750
|
[
|
|
@@ -799,8 +801,8 @@ def getSlackReport(isRelease) {
|
|
|
799
801
|
short: true
|
|
800
802
|
],
|
|
801
803
|
[
|
|
802
|
-
title: "
|
|
803
|
-
value: "
|
|
804
|
+
title: "${slackTitle}",
|
|
805
|
+
value: "${npmUrl}",
|
|
804
806
|
short: false
|
|
805
807
|
],
|
|
806
808
|
[
|
package/package.json
CHANGED