Using just i on the shorthand hadn't been working on the CLI.
node ./src/ebird-ext/cli.js -i="./src/ebird-ext/MyEBirdData.csv" big-day
{ i: './src/ebird-ext/MyEBirdData.csv' } // the results of a console.log(opts) in biggestTime
undefined // results of console.log(input) in getData
TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be one of type string, Buffer, or URL. Received type undefined
Above, it shows 'i' as a key in the options, but that doesn't get translated into input. Using --input works fine.
Using just
ion the shorthand hadn't been working on the CLI.Above, it shows 'i' as a key in the options, but that doesn't get translated into
input. Using--inputworks fine.