react-native-acoustic-connect-beta 16.0.38 → 16.0.39
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.39",
|
|
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() {
|
package/package.json
CHANGED