We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd0c23 commit f043bb7Copy full SHA for f043bb7
packages/cmake-rn/src/cli.ts
@@ -89,7 +89,7 @@ const defineOption = new Option(
89
"-D,--define <entry...>",
90
"Define cache variables passed when configuring projects",
91
)
92
- .argParser<Array<Record<string, string>>>((input, previous = []) => {
+ .argParser<Record<string, string>[]>((input, previous = []) => {
93
// TODO: Implement splitting of value using a regular expression (using named groups) for the format <var>[:<type>]=<value>
94
// and return an object keyed by variable name with the string value as value or alternatively an array of [value, type]
95
const match = input.match(
0 commit comments