name: 'config-file', 5 shortcut: ['c'], 6 mode: InputOption::VALUE_REQUIRED, 7 description: 'The path to the project\'s build.yaml file', 8 default: 'build.yaml', 9 ) 10 ->addOption( 11 name: 'output-dir', 12 shortcut: ['o'], 13 mode: InputOption::VALUE_REQUIRED, 14 description: 'The directory to create files in', 15 default: '.', 16 ); 17 } @opdavies