File renamings that only touch capitalization aren't being tracked by git (e.g. myComponent.tsx to MyComponent.tsx)
Capitalization doesn't matter in file path imports (but it matters on other OSes!).
// Both lines equally work on macOS! import Button from '../../components/button'; import Button from '../../components/Button';
By Sebastian Herrmann
…for Git and ES6 file paths.
A software-developing peep.