From 03c0f391bcca7ee38274eb874cd602707f2fa079 Mon Sep 17 00:00:00 2001 From: Felix Kling Date: Fri, 14 Oct 2022 14:36:01 +0200 Subject: [PATCH] Update ui/assets/.gitignore to ignore *.hot-update.json files (#42986) Whenever I run `yarn watch-web` I end up with a bunch of untracked `.hot-update.json` files in the `ui/assets` directory: ``` Untracked files: (use "git add ..." to include in what will be committed) ui/assets/runtime.e769c685d3f89b2a9437.hot-update.json ``` --- ui/assets/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/assets/.gitignore b/ui/assets/.gitignore index a58c9078ae9..8938fa08361 100644 --- a/ui/assets/.gitignore +++ b/ui/assets/.gitignore @@ -9,3 +9,4 @@ !img/** *.DS_Store stats.json +*.hot-update.json