Created by: MaximDevoir
Summary
Change Type: enhancement
Allow help
to behave as version
and info
currently do; Ignore the main action, when supplied, and output their respective information.
Current Behavior
Supplying a project name for create-react-app
's main action, along with any of the help arguments (-h
and --help
) will result in the software ignoring those help arguments.
Example: create-react-app hello-world --help
will produce the project and not output help information.
New Behavior
Whenever the -h
or --help
arguments are present, CRA will print out help information and exit the process.
Example: create-react-app hello-world --help
will output the help information and exit the process.