Browse Source

make indendation consistent

master
Guillermo Rauch 9 years ago
parent
commit
fc8e4f8e20
  1. 2
      bin/now-alias
  2. 2
      bin/now-domains
  3. 2
      bin/now-secrets

2
bin/now-alias

@ -141,7 +141,7 @@ async function run (token) {
_url, _url,
time time
]; ];
}), { align: ['l', 'r', 'l'], hsep: ' '.repeat(3) }); }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) });
if (text) console.log('\n' + text + '\n'); if (text) console.log('\n' + text + '\n');
break; break;

2
bin/now-domains

@ -135,7 +135,7 @@ async function run (token) {
url, url,
time time
]; ];
}), { align: ['l', 'r', 'l'], hsep: ' '.repeat(3) }); }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) });
if (out) console.log('\n' + out + '\n'); if (out) console.log('\n' + out + '\n');
break; break;

2
bin/now-secrets

@ -118,7 +118,7 @@ async function run (token) {
chalk.bold(secret.name), chalk.bold(secret.name),
chalk.gray(ms(cur - new Date(secret.created)) + ' ago') chalk.gray(ms(cur - new Date(secret.created)) + ' ago')
]; ];
}), { align: ['l', 'r', 'l'], hsep: ' '.repeat(3) }); }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) });
if (out) console.log('\n' + out + '\n'); if (out) console.log('\n' + out + '\n');
return secrets.close(); return secrets.close();
} }

Loading…
Cancel
Save