The current generated README shows the install example with --save option:
|
lines.push(`> \`npm install --save ${typing.name}\``); |
Wouldn't it be valuable to instruct users whether to choose --save or --save-dev for types?
For example:
If the types are consumed only within your package, install it with --save-dev option:
npm install --save-dev ...
If your package directly or indirectly exports the types, use the --save option instead of --save-dev.