File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const formatTrace = (
1616 const fail = pc . red ;
1717 const dim = pc . dim ;
1818
19- const entryMarker = node . isEntry ? dim ( ' ◯ ' ) : '' ;
19+ const entryMarker = node . isEntry ? dim ( ' ⎆ ' ) : '' ;
2020 lines . push ( `${ file ( toRelative ( node . filePath ) ) } ${ dim ( ':' ) } ${ id ( node . identifier ) } ${ entryMarker } ` ) ;
2121
2222 const formatVia = ( child : ExportsTreeNode ) : string => {
@@ -31,7 +31,7 @@ export const formatTrace = (
3131 const formatChild = ( child : ExportsTreeNode , prefix : string , isLast : boolean ) => {
3232 const connector = isLast ? '└── ' : '├── ' ;
3333 const childPrefix = isLast ? ' ' : '│ ' ;
34- const entryMarker = child . isEntry ? dim ( ' ◯ ' ) : '' ;
34+ const entryMarker = child . isEntry ? dim ( ' ⎆ ' ) : '' ;
3535 const isLeaf = child . children . length === 0 ;
3636 const leafMarker = isLeaf && ! child . via ?. startsWith ( 'reExport' ) ? ( isReferenced ? ok ( ' ✓' ) : fail ( ' ✗' ) ) : '' ;
3737
You can’t perform that action at this time.
0 commit comments