const WINDOWS_SEPARATOR = '\\';
/**
* Converts a file path to use POSIX forward slashes.
* On Windows, `path.relative()` and similar return backslashes;
* this utility normalizes them.
*/export function toPosixPath(filePath){
return filePath.replaceAll(WINDOWS_SEPARATOR, '/');
}