File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed
tools/pfe-tools/cli/commands Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -58,19 +58,13 @@ export async function handler(argv: Opts) {
5858 return ;
5959 }
6060
61- if ( missing . size ) {
62- if ( ! argv . quiet ) {
63- for ( const [ , x ] of missing ) {
64- console . log ( chalk . red `missing export` , x ) ;
65- }
61+ if ( ! argv . quiet ) {
62+ for ( const [ , x ] of missing ) {
63+ console . log ( chalk . red `missing export` , x ) ;
6664 }
67- }
6865
69- if ( noTarget . size ) {
70- if ( ! argv . quiet ) {
71- for ( const [ k , x ] of noTarget ) {
72- console . log ( `${ chalk . red `target` } ${ chalk . yellow ( x ) } for export ${ chalk . blue ( k ) } ${ chalk . red `doesn't exist` } ` ) ;
73- }
66+ for ( const [ k , x ] of noTarget ) {
67+ console . log ( `${ chalk . red `target` } ${ chalk . yellow ( x ) } for export ${ chalk . blue ( k ) } ${ chalk . red `doesn't exist` } ` ) ;
7468 }
7569 }
7670
You can’t perform that action at this time.
0 commit comments