From 89e5b6a05ff54e10af259891d183da387a6ca998 Mon Sep 17 00:00:00 2001 From: Andrew Hansen Date: Thu, 22 Feb 2018 23:12:44 -0800 Subject: [PATCH] fix(flow): rename src/index.js to gymnast.js Since webpack outputs a file called `gymnast.js`, the src file needs to be named the same so that when we output flow files, we get `gymnast.js` (webpack output) next to `gymnast.js.flow` (flow types generated from src). Alternatively, we could update webpack to output a file named `index.js. --- src/{index.js => gymnast.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{index.js => gymnast.js} (100%) diff --git a/src/index.js b/src/gymnast.js similarity index 100% rename from src/index.js rename to src/gymnast.js