async run()

in commands/list.js [46:54]


  async run(argv) {
    const config = await loadConfig();
    if (!config) {
      console.log('No any profiles.');
      return;
    }

    display(config);
  }