Examples shows import like ```js import parser from 'yargs-parser' ``` whereas the first letter of import name need to be uppercase ```js import Parser from 'yargs-parser' ``` The current sample simply cannot find `yargs-parser`.
Examples shows import like
whereas the first letter of import name need to be uppercase
The current sample simply cannot find
yargs-parser.