@brightlayer-ui/react-native-template-routing-typescript 2.0.0 → 2.1.0-alpha.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.1.0 (unreleased)
4
+
5
+ ### Changed
6
+
7
+ - Update to build with React Native 0.70.
8
+
3
9
  ## v2.0.0 (December 16, 2021)
4
10
 
5
11
  ### Changed
package/dependencies.json CHANGED
@@ -2,12 +2,12 @@
2
2
  "dependencies": [
3
3
  "@brightlayer-ui/react-native-themes@^6.0.0",
4
4
  "@brightlayer-ui/colors@^3.0.1",
5
- "@brightlayer-ui/react-native-components@^6.0.1",
6
- "@brightlayer-ui/react-native-vector-icons@^1.4.0",
5
+ "@brightlayer-ui/react-native-components@7.0.0",
6
+ "@brightlayer-ui/react-native-vector-icons@2.0.0",
7
7
  "react-native-modal@^12.0.2",
8
8
  "react-native-paper@^4.7.2",
9
9
  "@brightlayer-ui/icons-svg@^1.8.0",
10
- "react-native-vector-icons@^8.0.0",
10
+ "react-native-vector-icons@^9.2.0",
11
11
  "react-native-svg@^12.1.0",
12
12
  "react-native-svg-transformer@^0.14.3",
13
13
  "react-native-safe-area-context@^3.2.0",
@@ -16,7 +16,7 @@
16
16
  "@react-navigation/native@^5.9.3",
17
17
  "@react-navigation/stack@^5.14.3",
18
18
  "react-native-gesture-handler@^1.10.3",
19
- "react-native-reanimated@^1.0.0",
19
+ "react-native-reanimated@^2.0.0",
20
20
  "react-native-screens@^3.0.0"
21
21
  ],
22
22
  "devDependencies": ["@types/react-native-vector-icons", "jest-transform-stub"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightlayer-ui/react-native-template-routing-typescript",
3
- "version": "2.0.0",
3
+ "version": "2.1.0-alpha.1",
4
4
  "author": "brightlayer-ui <brightlayer-ui@eaton.com>",
5
5
  "keywords": [
6
6
  "react native",
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ presets: ['module:metro-react-native-babel-preset'],
3
+ // react-native-reanimated/plugin must be listed last
4
+ plugins: ['react-native-reanimated/plugin'],
5
+ };