@fto-consult/expo-ui 6.59.1 → 6.59.3

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/babel.config.js CHANGED
@@ -54,9 +54,9 @@ module.exports = function(api,opts) {
54
54
  ['babel-preset-expo']
55
55
  ],
56
56
  plugins : [
57
- ['react-native-reanimated/plugin'],
58
57
  ["inline-dotenv",inlineDovOptions],
59
58
  ["module-resolver", {"alias": alias}],
59
+ ['react-native-reanimated/plugin'],
60
60
  ],
61
61
  };
62
62
  };
package/metro.config.js CHANGED
@@ -23,7 +23,7 @@ module.exports = function(opts){
23
23
  }
24
24
  config.watchFolders = Array.isArray(config.watchFolders) && config.watchFolders || [];
25
25
  const isLocalTest = require("./is-local-dev")();
26
- if(!isLocalTest){
26
+ if(!isLocalTest && isDev){
27
27
  config.watchFolders.push(localDir);
28
28
  }
29
29
  // 2. Let Metro know where to resolve packages and in what order
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.59.1",
3
+ "version": "6.59.3",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
package/src/App.js CHANGED
@@ -13,7 +13,7 @@ import App from "./AppEntry";
13
13
  * }
14
14
  */
15
15
 
16
- export default function ExpoUIAppEntryProvider({swrConfig,render,children,init,...rest}){
16
+ export default function ExpoUIAppEntryProvider({render,children,init,...rest}){
17
17
  return <Provider {...rest}>
18
18
  <App init={init} children={children} render={render}/>
19
19
  </Provider>