We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 452d642 commit 9d98d4bCopy full SHA for 9d98d4b
node/deno.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@gaubee/node",
3
- "version": "0.2.1",
+ "version": "0.2.2",
4
"exports": {
5
"./env": "./src/env.ts",
6
"./path": "./src/path.ts",
node/src/path.ts
@@ -13,7 +13,7 @@ export const normalizeFilePath = (path: string | URL): string => {
13
path = fileURLToPath(path);
14
}
15
if (path.includes("\\")) {
16
- path = path.replaceAll(node_path.sep, node_path.posix.sep);
+ path = path.replaceAll("\\", "/");
17
18
return path;
19
};
0 commit comments