From d4d5330bbbe597a6067d6972bc2dfb9834f4f55d Mon Sep 17 00:00:00 2001 From: Jean-Philippe Murray Date: Thu, 26 Jan 2017 21:22:52 -0500 Subject: [PATCH] Remove the hot file from versionning Following https://github.com/laravel/framework/pull/17571, I was correctly pointed that the small proposition should be made over here. Here's a copy / past of my message, for clarity's sake. --- When you run `npm run hmr`, a `hot` file is created to the public folder for the `mix()` helper to know if it has to server from the webpack server or not. This file does not go away until we run `npm run dev` (or `watch`). True, if we use `npm run production` in our production server it goes away too, but in case we don't make it go away in development, I don't think it's necessary to version it. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b278165a69b..c561e9bdc45 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /node_modules /public/storage +/public/hot /storage/*.key /vendor /.idea