File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
packages/cli/lib/commands Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,15 @@ module.exports = async function () {
1111 process . stdout . write ( '\n' ) ;
1212 info ( 'Available official templates: \n' ) ;
1313
14- repos . forEach ( repo => {
15- if ( repo . name === 'material' ) return ;
16- const description = repo . description ? ` - ${ repo . description } ` : '' ;
17- process . stdout . write (
18- ` ⭐️ ${ bold ( magenta ( repo . name ) ) } ${ description } \n`
19- ) ;
20- } ) ;
14+ repos
15+ . filter ( repo => ! repo . archived )
16+ . forEach ( repo => {
17+ if ( repo . name === 'material' ) return ;
18+ const description = repo . description ? ` - ${ repo . description } ` : '' ;
19+ process . stdout . write (
20+ ` ⭐️ ${ bold ( magenta ( repo . name ) ) } ${ description } \n`
21+ ) ;
22+ } ) ;
2123
2224 process . stdout . write ( '\n' ) ;
2325 } catch ( err ) {
You can’t perform that action at this time.
0 commit comments