Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 555ddfa

Browse files
lblasafacebook-github-bot
authored andcommitted
Ignore and do not watch idb files
Summary: During development using Mobile Builds, I noticed that watchman and hg were picking up changes from idb temporary files. These files should be ignored. Reviewed By: passy Differential Revision: D52693747 fbshipit-source-id: 772cdea8e55acd631d4cab1e4b7ab3faa3873c29
1 parent 5afb1fc commit 555ddfa

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ react-native/package-lock.json
2626
*.xcworkspace
2727
**/Pods/
2828
**/xcuserdata/
29+
**/idb-applications/
30+
**/idb-dsyms/
31+
**/idb-dylibs/
32+
**/idb-frameworks/
33+
**/idb-test-bundles/
2934

3035
android/third-party/external/
3136

desktop/scripts/start-flipper-server-dev.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ async function startWatchChanges() {
148148
'**/.*',
149149
'**/lib/**/*',
150150
'**/dist/**/*',
151+
'**/idb-applications/**/*',
152+
'**/idb-dsyms/**/*',
153+
'**/idb-dylibs/**/*',
154+
'**/idb-frameworks/**/*',
155+
'**/idb-test-bundles/**/*',
151156
],
152157
},
153158
),

0 commit comments

Comments
 (0)