Skip to content

Commit

Permalink
chore(deps): update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
hyochan committed Mar 14, 2024
1 parent f1a4e9b commit 8d1c322
Show file tree
Hide file tree
Showing 7 changed files with 290 additions and 112 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,9 @@ android
ios



# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli

expo-env.d.ts
# @end expo-cli
11 changes: 11 additions & 0 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,17 @@ export default ({config}: ConfigContext): ExpoConfig => ({
'expo-router',
'expo-tracking-transparency',
'expo-localization',
[
'expo-font',
{
fonts: [
'node_modules/dooboo-ui/uis/Icon/doobooui.ttf',
'node_modules/dooboo-ui/uis/Icon/Pretendard-Bold.otf',
'node_modules/dooboo-ui/uis/Icon/Pretendard-Regular.otf',
'node_modules/dooboo-ui/uis/Icon/Pretendard-Thin.otf',
],
},
],
],
experiments: {
typedRoutes: true,
Expand Down
4 changes: 2 additions & 2 deletions app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import AsyncStorage from '@react-native-async-storage/async-storage';
import {Icon, useDooboo} from 'dooboo-ui';
import CustomPressable from 'dooboo-ui/uis/CustomPressable';
import StatusBarBrightness from 'dooboo-ui/uis/StatusbarBrightness';
import {SplashScreen, Stack, useRouter} from 'expo-router';
import {Stack, useRouter} from 'expo-router';
import * as SplashScreen from 'expo-splash-screen';
import * as SystemUI from 'expo-system-ui';

import RootProvider from '../src/providers';
Expand Down Expand Up @@ -57,7 +58,6 @@ function Layout(): JSX.Element | null {
headerStyle: {backgroundColor: theme.bg.basic},
headerTintColor: theme.text.label,
headerTitleStyle: {
fontFamily: 'Pretendard-Bold',
fontWeight: 'bold',
color: theme.text.basic,
},
Expand Down
Binary file modified bun.lockb
Binary file not shown.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"scripts": {
"start": "expo start",
"start:prod": "STAGE=prod expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src app test",
"lint:i18n": "eslint --fix --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js assets/langs/",
Expand All @@ -24,25 +24,25 @@
"@react-native-community/datetimepicker": "7.6.1",
"@shopify/flash-list": "1.6.3",
"date-fns": "^2.30.0",
"dooboo-ui": "^0.2.28",
"expo": "~50.0.6",
"dooboo-ui": "^0.2.31",
"expo": "~50.0.13",
"expo-constants": "~15.4.5",
"expo-device": "~5.9.3",
"expo-font": "~11.10.2",
"expo-font": "~11.10.3",
"expo-image": "~1.10.6",
"expo-image-picker": "~14.7.1",
"expo-linear-gradient": "~12.7.1",
"expo-linear-gradient": "~12.7.2",
"expo-linking": "~6.2.2",
"expo-localization": "~14.8.3",
"expo-notifications": "~0.27.6",
"expo-router": "~3.4.7",
"expo-router": "~3.4.8",
"expo-screen-orientation": "~6.4.1",
"expo-sharing": "~11.10.0",
"expo-splash-screen": "~0.26.4",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.3",
"expo-tracking-transparency": "~3.3.0",
"expo-updates": "~0.24.10",
"expo-updates": "~0.24.12",
"expo-web-browser": "~12.8.2",
"i18n-js": "4.3.2",
"lottie-react-native": "6.5.1",
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@
"src/**/*.ts",
"src/**/*.tsx",
"**/*.test.tsx",
"**/*.spec.ts"
"**/*.spec.ts",
".expo/types/**/*.ts",
"expo-env.d.ts"
],
"exclude": [
"node_modules"
Expand Down
Loading

0 comments on commit 8d1c322

Please sign in to comment.