in scripts/team.js [52:60]
async writeFile() {
const data = {
totalCount: Object.keys(this.logins).length,
projects: this.nativeObject
}
const yamlString = YAML.stringify(data);
await promises.writeFile(this.teamFile, yamlString, 'utf8');
console.log('team.yml success!');
}