We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c639726 commit 45d6b09Copy full SHA for 45d6b09
packages/cli-tools/src/unixifyPaths.ts
@@ -7,5 +7,5 @@
7
*/
8
9
export default function unixifyPaths(path: string): string {
10
- return path.replace(/^([a-zA-Z]+:|\.\/)/, '');
+ return path.replace(/^([a-zA-Z]+:|\.\/)/, '').replace(/\\/g, '/');
11
}
0 commit comments