react-native-ui-lib 8.3.2-snapshot.7740 → 8.3.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ui-lib",
3
- "version": "8.3.2-snapshot.7740",
3
+ "version": "8.3.2",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -9,7 +9,6 @@ const BRANCH_CATEGORIES = [
9
9
  {name: 'fixes', branch: 'fix/', title: ':wrench: Fixes'},
10
10
  {name: 'infra', branch: 'infra/', title: ':gear: Maintenance & Infra'}
11
11
  ];
12
- const SILENT_PRS = ['none', 'n/a', 'na'];
13
12
 
14
13
  function getBranchPrefixes() {
15
14
  return BRANCH_CATEGORIES.map(category => category.branch);
@@ -96,7 +95,7 @@ function isSilent(pr) {
96
95
  return true;
97
96
  } else {
98
97
  const changelog = pr.info.changelog.toLowerCase();
99
- if (SILENT_PRS.includes(changelog)) {
98
+ if (changelog === 'none' || changelog === 'n/a') {
100
99
  return true;
101
100
  }
102
101
  }