.strict() breaks yargs on macOS big sur (https://github.com/enso-org/ide/pull/657)

Original commit: 6fc78b6157
This commit is contained in:
Maciej Mikołajek 2020-07-10 22:15:31 +02:00 committed by GitHub
parent 45aa69bdc3
commit 675b1ae8e1

View File

@ -41,7 +41,11 @@ let optParser = yargs
.help()
.version(false)
.parserConfiguration({'populate--':true})
.strict()
// FIXME [MM]
// This modifier crashes Enso Studio on macOS 11, To test if it works
// again in next macOS betas - temporarily solves #650
// https://github.com/yargs/yargs/issues/1688
// .strict()
// === Config Options ===