A cross-platform library for manipulating v2ray written in F#. A separate frontend GUI project can be found here: https://github.com/Shadowsocks-NET/Aurum.Micro
I got such code:
cli.option('-b, --base-url <baseUrl>', 'Set the instance URL', {
default: 'https://github.com',
})
const opt = cli.parse()
console.log(opt)
When I run with --base-url "https://gitlab.com"
, I expect it to output such object:
{
args: [],
options: { '--': [], b: 'https://gitlab.com', baseUrl: 'https://gitlab.com' }
}
Instead it gives me this:
{
args: [],
options: { '--': [], b: 'https://github.com', baseUrl: 'https://gitlab.com' }
}
6.7.14
Revert "⬆️ Bump lodash from 4.17.19 to 4.17.21"
Merge pull request #31 from shanoaice/revert-12-dependabot/npm_and_yarn/lodash-4.17.21
Reverts shanoaice/MyLittlePony#12
Reverts shanoaice/MyLittlePony#12
:arrow_up: Bump lodash from 4.17.19 to 4.17.21
Bumps lodash from 4.17.19 to 4.17.21.
Signed-off-by: dependabot[bot] support@github.com
Merge pull request #12 from shanoaice/dependabot/npm_and_yarn/lodash-4.17.21