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 9b75af3 commit 03f94d4Copy full SHA for 03f94d4
packages/cmake-rn/src/cli.ts
@@ -101,7 +101,7 @@ const defineOption = new Option(
101
);
102
}
103
const { name, type, value } = match.groups;
104
- return [...previous, { [type ? name : `${name}:${type}`]: value }];
+ return [...previous, { [type ? `${name}:${type}` : name]: value }];
105
})
106
.default([]);
107
0 commit comments