in build/JsonCompiler.php [15:22]
public function __construct($path)
{
if (!file_exists($path)) {
throw new InvalidArgumentException("No JSON file found at $path");
}
$this->path = realpath($path);
}