When we pass args to command we need to apply checks manually on
number of arguments
argument type like number or string
like
# Here we are checking no. of args should not be zero
# but we need to check max no. of args also
if (!pkgs.length) {
console.error('packages required');
process.exit(1);
}
When we pass args to command we need to apply checks manually on