UNPKG

alfy-to-arvish

Version:

Convert alfy workflow to arvish workflow (or vice versa)

28 lines (22 loc) 449 B
#!/usr/bin/env node const meow = require('meow'); const converter = require('./index'); const helpString = ` Usage $ alfy-to-arvish Examples To convert alfy project to arvish, $ alfy-to-arvish To convert arvish project to alfy, $ alfy-to-arvish --invert `; const cli = meow(helpString, { flags: { invert: { type: 'boolean', alias: 'i', isRequired: (_flags, input) => false }, } }); converter(cli.flags);