1
1
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' ;
3
3
import { PRPLFileSystemTree , PRPLFileSystemTreeEntity } from '../types/prpl.js' ;
4
4
import { readDirSafe } from './read-dir-safe.js' ;
5
5
@@ -17,32 +17,31 @@ async function generateFileSystemTree(
17
17
const { entityPath, readFileRegExp } = args ;
18
18
19
19
const name = basename ( entityPath ) ;
20
- const path = entityPath ?. replace ( / \\ / g, '/' ) ;
21
20
22
21
const item : PRPLFileSystemTree = {
23
- path,
22
+ path : entityPath ,
24
23
name,
25
24
entity : null
26
25
} ;
27
26
28
27
let stats ;
29
28
30
29
try {
31
- stats = await stat ( path ) ;
30
+ stats = await stat ( entityPath ) ;
32
31
} catch ( _ ) {
33
32
return null ;
34
33
}
35
34
36
35
if ( stats ?. isFile ( ) ) {
37
- const { dir, base : name } = parse ( path ) ;
36
+ const { dir, base : name } = parse ( entityPath ) ;
38
37
39
38
item . srcRelativeDir = dir ?. replace ( resolve ( '.' ) , '' ) ;
40
- item . srcRelativeFilePath = `${ item ?. srcRelativeDir ?. replace ( '/ src' , '' ) } / ${ name } ` ;
39
+ item . srcRelativeFilePath = `${ item ?. srcRelativeDir ?. replace ( ` ${ sep } src` , '' ) } ${ sep } ${ name } ` ;
41
40
42
- item . targetFilePath = path ?. replace ( 'src' , 'dist' ) ;
41
+ item . targetFilePath = entityPath ?. replace ( 'src' , 'dist' ) ;
43
42
item . targetDir = parse ( item ?. targetFilePath ) ?. dir ;
44
43
45
- item . extension = extname ( path ) ?. toLowerCase ( ) ;
44
+ item . extension = extname ( entityPath ) ?. toLowerCase ( ) ;
46
45
item . entity = PRPLFileSystemTreeEntity . file ;
47
46
48
47
try {
0 commit comments