fix(core): slim down dependencies

This commit is contained in:
Phil Kunz
2018-06-28 23:57:40 +02:00
parent 7b1de5b31d
commit c701e3e04c
5 changed files with 1105 additions and 738 deletions

View File

@ -31,11 +31,11 @@ take the following commandline input:
mytool command argument1 argument2 --option1 -o2 option2Value
```
* `mytool` obviously is the tool (like git)
* `command` is the main thing the tool shall do (like commit)
* `argument1` and `argument2` are arguments
* `option1` is a longform option you can add (like --message for message)
* `optionValue` is the referenced option value (like a commit message)
- `mytool` obviously is the tool (like git)
- `command` is the main thing the tool shall do (like commit)
- `argument1` and `argument2` are arguments
- `option1` is a longform option you can add (like --message for message)
- `optionValue` is the referenced option value (like a commit message)
When there is no command and no option specified the standardTask applied.
When there is a option specified but no command, standardTask applies,