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 5a71de5 commit dd35154Copy full SHA for dd35154
bin/create-net.js
@@ -146,6 +146,7 @@ async function listTemplates(targetOrg) {
146
const maxNameLength = Math.max(...repos.map(r => r.name.length));
147
const padding = Math.max(maxNameLength + 2, 25);
148
149
+ repos.sort((a, b) => a.name.localeCompare(b.name));
150
repos.forEach(repo => {
151
const name = repo.name.padEnd(padding);
152
const description = repo.description || 'No description available';
test-ls.sh
@@ -0,0 +1,2 @@
1
+#!/bin/bash
2
+./bin/create-net.js ls
0 commit comments