You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that calling this an alias is misleading since the two commands do not do the same thing. deno add only updates the configuration file to add the specified dependency to the "imports" field. deno install actually downloads and installs dependencies on the user's computer.
I think that calling this an alias is misleading since the two commands do not do the same thing. deno remove only updates the configuration file to remove the specified dependency from the "imports" field. deno install actually removes/uninstalls dependencies form the user's computer.
The text was updated successfully, but these errors were encountered:
@thisisjofrank Thank you for looking at this issue. The tips appear to still be in the files for both pages (screenshots and line numbers shown below). If you agree with the suggestion to remove or modify these to be less misleading about what the subcommands do, I will gladly open a pull request with suggested changes.
runtime/reference/cli/install.md, lines 31 to 35
runtime/reference/cli/uninstall.md, lines 33 to 37
The documentation page for the CLI runtime subcommand
deno install
(https://docs.deno.com/runtime/reference/cli/install/) says that the subcommanddeno add
is an alias fordeno install
.I think that calling this an alias is misleading since the two commands do not do the same thing.
deno add
only updates the configuration file to add the specified dependency to the "imports" field.deno install
actually downloads and installs dependencies on the user's computer.Similarly, the documentation page for the CLI runtime subcommand
deno uninstall
(https://docs.deno.com/runtime/reference/cli/uninstall/) says that the subcommanddeno remove
is an alias fordeno uninstall
.I think that calling this an alias is misleading since the two commands do not do the same thing.
deno remove
only updates the configuration file to remove the specified dependency from the "imports" field.deno install
actually removes/uninstalls dependencies form the user's computer.The text was updated successfully, but these errors were encountered: