We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a35292 commit 96ce370Copy full SHA for 96ce370
packages/cli/lib/commands/list.js
@@ -11,13 +11,14 @@ module.exports = async function () {
11
process.stdout.write('\n');
12
info('Available official templates: \n');
13
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
- });
+ repos
+ .filter(repo => !repo.archived)
+ .forEach(repo => {
+ const description = repo.description ? ` - ${repo.description}` : '';
+ process.stdout.write(
+ ` ⭐️ ${bold(magenta(repo.name))}${description} \n`
+ );
21
+ });
22
23
24
} catch (err) {
0 commit comments