File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
defmodule Mix.Tasks.Deps.Clean do
2
2
use Mix.Task
3
3
4
- @ shortdoc "Removes the given dependencies' files"
4
+ @ shortdoc "Deletes the given dependencies' files"
5
5
6
6
@ moduledoc """
7
- Removes the given dependencies' files, including build artifacts and fetched
7
+ Deletes the given dependencies' files, including build artifacts and fetched
8
8
sources.
9
9
10
10
Since this is a destructive action, cleaning of dependencies
11
11
can only happen by passing arguments/options:
12
12
13
- * `dep1, dep2` - the name of dependencies to be removed
14
- * `--all` - removes all dependencies
15
- * `--unused` - removes only unused dependencies (no longer mentioned
13
+ * `dep1, dep2` - the name of dependencies to be deleted
14
+ * `--all` - deletes all dependencies
15
+ * `--unused` - deletes only unused dependencies (no longer mentioned
16
16
in the `mix.exs` file)
17
- * `--unlock` - also unlock the removed dependencies
17
+ * `--unlock` - also unlocks the deleted dependencies
18
18
19
19
By default this task works across all environments, unless `--only`
20
20
is given.
You can’t perform that action at this time.
0 commit comments