We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Builds failing with latest release because "--platform" arg is being passed to "config", but the arg is unknown causing validation issues.
Introduced in this PR, --platform android is being passed to config now: #2379
--platform android
config
Commander needs to know about the option (ideal) or disable the validation via .allowUnknownOption()
.allowUnknownOption()
Run config the way the build script is trying to:
> node ./node_modules/@react-native-community/cli/build/bin.js config --platform android error: unknown option '--platform'
The text was updated successfully, but these errors were encountered:
It's the same issue, how should I apply it?
Sorry, something went wrong.
@choijiho0021 what React Native version are you using? It should work with 0.75
i use "react-native": "0.71.12" It is difficult to update the react native version easily.
Successfully merging a pull request may close this issue.
Description
Builds failing with latest release because "--platform" arg is being passed to "config", but the arg is unknown causing validation issues.
Introduced in this PR,
--platform android
is being passed toconfig
now: #2379Commander needs to know about the option (ideal) or disable the validation via
.allowUnknownOption()
Reproducible Demo
Run config the way the build script is trying to:
The text was updated successfully, but these errors were encountered: