Skip to content

Commit 0ca06d4

Browse files
committed
fix(core): Normalize separators in fs tree generation
1 parent 34a97a1 commit 0ca06d4

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

packages/core/src/lib/generate-fs-tree.ts

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { readFile, stat } from 'fs/promises';
2-
import { basename, extname, join, parse, resolve } from 'path';
2+
import { basename, extname, join, parse, resolve, sep } from 'path';
33
import { PRPLFileSystemTree, PRPLFileSystemTreeEntity } from '../types/prpl.js';
44
import { readDirSafe } from './read-dir-safe.js';
55

@@ -17,32 +17,31 @@ async function generateFileSystemTree(
1717
const { entityPath, readFileRegExp } = args;
1818

1919
const name = basename(entityPath);
20-
const path = entityPath?.replace(/\\/g, '/');
2120

2221
const item: PRPLFileSystemTree = {
23-
path,
22+
path: entityPath,
2423
name,
2524
entity: null
2625
};
2726

2827
let stats;
2928

3029
try {
31-
stats = await stat(path);
30+
stats = await stat(entityPath);
3231
} catch (_) {
3332
return null;
3433
}
3534

3635
if (stats?.isFile()) {
37-
const { dir, base: name } = parse(path);
36+
const { dir, base: name } = parse(entityPath);
3837

3938
item.srcRelativeDir = dir?.replace(resolve('.'), '');
40-
item.srcRelativeFilePath = `${item?.srcRelativeDir?.replace('/src', '')}/${name}`;
39+
item.srcRelativeFilePath = `${item?.srcRelativeDir?.replace(`${sep}src`, '')}${sep}${name}`;
4140

42-
item.targetFilePath = path?.replace('src', 'dist');
41+
item.targetFilePath = entityPath?.replace('src', 'dist');
4342
item.targetDir = parse(item?.targetFilePath)?.dir;
4443

45-
item.extension = extname(path)?.toLowerCase();
44+
item.extension = extname(entityPath)?.toLowerCase();
4645
item.entity = PRPLFileSystemTreeEntity.file;
4746

4847
try {

0 commit comments

Comments
 (0)