import { run } from './run.js'; export default run(app => { app.program .name('pull') .description('Pull from a remote') .argument('[remote]', 'The remote to pull from') .option('-f, --force', 'Force the pull') .action(function(remote, opts){ this.out.line(`pulling from [${remote}]. force: ${opts.force}`); }) ; });