diff --git a/packages/cli/lib/commands/list.js b/packages/cli/lib/commands/list.js index b1d785cbf..eb295c7c7 100644 --- a/packages/cli/lib/commands/list.js +++ b/packages/cli/lib/commands/list.js @@ -11,13 +11,15 @@ module.exports = async function () { process.stdout.write('\n'); info('Available official templates: \n'); - repos.forEach(repo => { - if (repo.name === 'material') return; - const description = repo.description ? ` - ${repo.description}` : ''; - process.stdout.write( - ` ⭐️ ${bold(magenta(repo.name))}${description} \n` - ); - }); + repos + .filter(repo => !repo.archived) + .forEach(repo => { + if (repo.name === 'material') return; + const description = repo.description ? ` - ${repo.description}` : ''; + process.stdout.write( + ` ⭐️ ${bold(magenta(repo.name))}${description} \n` + ); + }); process.stdout.write('\n'); } catch (err) {