@fto-consult/expo-ui 6.18.31 → 6.18.32
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 +2 -2
- package/package.json +1 -1
- package/src/index.js +1 -0
package/bin/create-app.js
CHANGED
|
@@ -52,8 +52,8 @@ const createAPPJSONFile = (projectRoot,{name,version})=>{
|
|
|
52
52
|
writeFile(appJSONPath,`
|
|
53
53
|
{
|
|
54
54
|
"expo": {
|
|
55
|
-
"name": ${name},
|
|
56
|
-
"slug": ${name.toLowerCase().replace(
|
|
55
|
+
"name": "${name}",
|
|
56
|
+
"slug": "${name.toLowerCase().replace(/\s\s+/g, '-')}",
|
|
57
57
|
"version":${version},
|
|
58
58
|
}
|
|
59
59
|
}
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -40,6 +40,7 @@ import StatusBar from "$ecomponents/StatusBar";
|
|
|
40
40
|
import {Provider as PaperProvider } from 'react-native-paper';
|
|
41
41
|
import FontIcon from "$ecomponents/Icon/Font";
|
|
42
42
|
import useContext from "$econtext/hooks";
|
|
43
|
+
export * from "./context";
|
|
43
44
|
|
|
44
45
|
let MAX_BACK_COUNT = 1;
|
|
45
46
|
let countBack = 0;
|