From 3c3ab533dd2f8dfda1f082f1a18360a6e068b701 Mon Sep 17 00:00:00 2001 From: CHOSOOGEUN <241898164+CHOSOOGEUN@users.noreply.github.com> Date: Sat, 23 May 2026 11:05:54 +0900 Subject: [PATCH] chore(frontend): remove stray .expo/ and ignore it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #27 에 frontend/.expo/ (README.md, settings.json) 가 실수로 포함됨. frontend 는 Vite SPA 라 .expo (React Native/Expo 도구가 생성) 가 필요 없음. 삭제 + 재발 방지로 frontend/.gitignore 에 .expo/ 추가. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/.expo/README.md | 15 --------------- frontend/.expo/settings.json | 8 -------- frontend/.gitignore | 5 ++++- 3 files changed, 4 insertions(+), 24 deletions(-) delete mode 100644 frontend/.expo/README.md delete mode 100644 frontend/.expo/settings.json diff --git a/frontend/.expo/README.md b/frontend/.expo/README.md deleted file mode 100644 index fd146b4..0000000 --- a/frontend/.expo/README.md +++ /dev/null @@ -1,15 +0,0 @@ -> Why do I have a folder named ".expo" in my project? - -The ".expo" folder is created when an Expo project is started using "expo start" command. - -> What do the files contain? - -- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds. -- "packager-info.json": contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator. -- "settings.json": contains the server configuration that is used to serve the application manifest. - -> Should I commit the ".expo" folder? - -No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine. - -Upon project creation, the ".expo" folder is already added to your ".gitignore" file. diff --git a/frontend/.expo/settings.json b/frontend/.expo/settings.json deleted file mode 100644 index 92bc513..0000000 --- a/frontend/.expo/settings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "hostType": "lan", - "lanType": "ip", - "dev": true, - "minify": false, - "urlRandomness": null, - "https": false -} diff --git a/frontend/.gitignore b/frontend/.gitignore index 4baec66..6dc93ff 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -42,4 +42,7 @@ Thumbs.db # Claude .claude -.claudeignore \ No newline at end of file +.claudeignore + +# Expo (frontend 는 Vite — .expo 잘못 들어오는 것 방지) +.expo/ \ No newline at end of file