@fto-consult/expo-ui 8.17.1 → 8.17.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/bin/create-app/dependencies.js +13 -13
- package/bin/update.js +4 -4
- package/package.json +1 -1
@@ -4,34 +4,34 @@ module.exports = {
|
|
4
4
|
"@expo/html-elements": "^0.5.1",
|
5
5
|
"@expo/vector-icons": "^14.0.0",
|
6
6
|
"@pchmn/expo-material3-theme": "^1.3.2",
|
7
|
-
"@react-native-community/netinfo": "
|
7
|
+
"@react-native-community/netinfo": "11.1.0",
|
8
8
|
"@react-native/assets-registry": "^0.72.0",
|
9
9
|
"@react-navigation/native": "^6.1.9",
|
10
10
|
"@react-navigation/native-stack": "^6.9.17",
|
11
11
|
"@react-navigation/stack": "^6.3.20",
|
12
|
-
"@shopify/flash-list": "
|
13
|
-
"expo": "
|
12
|
+
"@shopify/flash-list": "1.6.3",
|
13
|
+
"expo": "~50.0.4",
|
14
14
|
"expo-barcode-scanner": "~12.9.2",
|
15
|
-
"expo-camera": "~14.0.
|
15
|
+
"expo-camera": "~14.0.3",
|
16
16
|
"expo-clipboard": "~5.0.1",
|
17
17
|
"expo-font": "~11.10.2",
|
18
18
|
"expo-image-picker": "~14.7.1",
|
19
19
|
"expo-linking": "~6.2.2",
|
20
20
|
"expo-sharing": "~11.10.0",
|
21
|
-
"expo-sqlite": "~13.2.
|
21
|
+
"expo-sqlite": "~13.2.2",
|
22
22
|
"expo-status-bar": "~1.11.1",
|
23
23
|
"expo-system-ui": "~2.9.3",
|
24
|
-
"expo-web-browser": "~12.8.
|
25
|
-
"react-native": "
|
26
|
-
"@react-native-async-storage/async-storage": "
|
24
|
+
"expo-web-browser": "~12.8.2",
|
25
|
+
"react-native": "0.73.2",
|
26
|
+
"@react-native-async-storage/async-storage": "1.21.0",
|
27
27
|
"react-native-big-list": "^1.6.1",
|
28
28
|
"react-native-blob-util": "^0.18.6",
|
29
|
-
"react-native-safe-area-context": "
|
29
|
+
"react-native-safe-area-context": "4.8.2",
|
30
30
|
"react-native-screens": "~3.29.0",
|
31
|
-
"react-native-svg": "
|
32
|
-
"react-native-webview": "
|
31
|
+
"react-native-svg": "14.1.0",
|
32
|
+
"react-native-webview": "13.6.4",
|
33
33
|
"react-native-gesture-handler": "~2.14.0",
|
34
|
-
"react-native-reanimated": "~3.6.
|
35
|
-
"react-native-view-shot": "
|
34
|
+
"react-native-reanimated": "~3.6.2",
|
35
|
+
"react-native-view-shot": "3.8.0"
|
36
36
|
};
|
37
37
|
|
package/bin/update.js
CHANGED
@@ -20,8 +20,8 @@ if(fs.existsSync(mainJSONPath)){
|
|
20
20
|
const filteredDeps = Object.keys(filterdDObj);
|
21
21
|
if(filteredDeps.length){
|
22
22
|
const script = filteredDeps.join(" ");
|
23
|
-
exec(`npm install
|
24
|
-
exec(`npx expo install --fix`,{projectRoot}).finally(()=>{
|
23
|
+
exec(`npm install expo`,{projectRoot}).finally(()=>{
|
24
|
+
exec(`npx expo install ${script} --fix`,{projectRoot}).finally((i)=>{
|
25
25
|
const newPackageJS = JSON.parse(fs.readFileSync(mainJSONPath));
|
26
26
|
let hasChanged = false;
|
27
27
|
if(newPackageJS?.dependencies && typeof newPackageJS?.dependencies =="object"){
|
@@ -42,8 +42,8 @@ module.exports = ${JSON.stringify(dependencies,null,"\t")};
|
|
42
42
|
console.log(e," is generated error");
|
43
43
|
}
|
44
44
|
}
|
45
|
-
});
|
46
|
-
})
|
45
|
+
});
|
46
|
+
})
|
47
47
|
} else {
|
48
48
|
console.log("Aucune dépendence expo à mettre à jour");
|
49
49
|
}
|