Created by: gaearon
It looks like https://github.com/facebook/create-react-app/pull/4866 broke it for all releases. Windows paths start with something like C: but the regex doesn't allow : so no path actually passes the check.
Since enabling : everywhere is likely not safe, I specifically enable ([a-ZA-Z]:[/\\])? at a first position instead.