@fto-consult/expo-ui 9.2.0 → 9.2.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/babel.config.js CHANGED
@@ -11,8 +11,6 @@ module.exports = function(api,opts) {
11
11
  if(typeof options.aliasMutator =="function"){
12
12
  options.aliasMutator({...options,alias});
13
13
  }
14
- require(`${path.resolve(__dirname,"bin","generate-tables")}`)();//génère les tables des bases de données
15
- require(`${path.resolve(__dirname,"bin","find-licenses")}`); //met à jour les licenses de l'application
16
14
  const plugins = (Array.isArray(opts.plugins) ? options.plugins : []);
17
15
  let reanimated = "react-native-reanimated/plugin";
18
16
  const filteredPlugins = plugins.filter((p)=>{
package/metro.config.js CHANGED
@@ -62,7 +62,7 @@ module.exports = function(opts){
62
62
  // Remove all console logs in production...
63
63
  config.transformer.minifierConfig.compress.drop_console = false;
64
64
 
65
- require("./bin/find-licenses")(projectRoot);
65
+ require(path.resolve(__dirname,"bin/find-licenses"))(projectRoot);
66
66
 
67
67
  return config;
68
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "9.2.0",
3
+ "version": "9.2.1",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "react-native-paper-doc": "https://github.com/callstack/react-native-paper/tree/main/docs/docs/guides",
6
6
  "scripts": {