react-native-acoustic-connect-beta 16.0.39 → 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
|
@@ -690,8 +690,12 @@ def getSlackReport(isRelease) {
|
|
|
690
690
|
populateSlackMessageGlobalVariables()
|
|
691
691
|
|
|
692
692
|
def releaseTitle = ""
|
|
693
|
+
def slackTitle = "Beta build"
|
|
694
|
+
def npmUrl = "https://www.npmjs.com/package/react-native-acoustic-connect-beta"
|
|
693
695
|
if (isRelease) {
|
|
694
696
|
releaseTitle = "********************Release********************\n"
|
|
697
|
+
slackTitle = "Release build"
|
|
698
|
+
npmUrl = "https://www.npmjs.com/package/react-native-acoustic-connect"
|
|
695
699
|
}
|
|
696
700
|
|
|
697
701
|
echo "currentBuild.result:${currentBuild.result}"
|
|
@@ -739,8 +743,8 @@ def getSlackReport(isRelease) {
|
|
|
739
743
|
short: true
|
|
740
744
|
],
|
|
741
745
|
[
|
|
742
|
-
title: "
|
|
743
|
-
value: "
|
|
746
|
+
title: "${slackTitle}",
|
|
747
|
+
value: "${npmUrl}",
|
|
744
748
|
short: false
|
|
745
749
|
],
|
|
746
750
|
[
|
|
@@ -797,8 +801,8 @@ def getSlackReport(isRelease) {
|
|
|
797
801
|
short: true
|
|
798
802
|
],
|
|
799
803
|
[
|
|
800
|
-
title: "
|
|
801
|
-
value: "
|
|
804
|
+
title: "${slackTitle}",
|
|
805
|
+
value: "${npmUrl}",
|
|
802
806
|
short: false
|
|
803
807
|
],
|
|
804
808
|
[
|
package/package.json
CHANGED