sindresorhus / meow

🐈 CLI app helper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

String value converted to Num

rotexhawk opened this issue · comments

Meow converts the string value '6.0' to the numeric value 6.

const minicli = meow({autoHelp: false, autoVersion: true, pkg, argv: gen});
const options = minicli.flags;

argV provided.

  '--flavor',              'default',
  '--runtime',             '6.0',

returned flags by meow.

flavor: default 
runtime: 6

Define the types in the flags option.

I can't change the code. That snippet it is from Yo package. Don't you think that regardless of the type it should not change "6.0" to "6"?