@fto-consult/expo-ui 6.20.9 → 6.20.10

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/bin/create-app.js CHANGED
@@ -65,11 +65,10 @@ module.exports = function(parsedArgs){
65
65
  createAPPJSONFile(projectRoot,{...mainPackage,name});
66
66
  copy(path.resolve(createAppDir,"src"),path.resolve(projectRoot,"src"),{recursive:true,overwrite:false});
67
67
  console.log("intalling dependencies ...");
68
- try {
69
- exec.sync(`npm install`,{projectRoot})
70
- } finally{
71
- process.exit();
72
- }
68
+ return exec(`npm install`,{projectRoot}).finally(()=>{
69
+ console.log("application ready");
70
+ process.exit();
71
+ });
73
72
  }
74
73
  const defaultDevDependencies = {
75
74
  "@expo/webpack-config":"latest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.20.9",
3
+ "version": "6.20.10",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {