Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
lempiji committed Apr 27, 2019
1 parent 93a515e commit d39453c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ A tool for creating module dependency graphs. And visualize the differences betw
"name": "diff",
"postGenerateCommands": [
"dub build -c makedeps",
"ddeps --focus=rx -o deps.dot",
"dub fetch ddeps",
"dub run ddeps -- --focus=rx -o deps.dot",
"dot -Tsvg -odeps.svg deps.dot"
]
},
{
"name": "diff-update",
"postGenerateCommands": [
"ddeps --focus=rx --update"
"dub fetch ddeps",
"dub run ddeps -- --focus=rx --update"
]
},
{
Expand All @@ -50,14 +52,16 @@ A tool for creating module dependency graphs. And visualize the differences betw
"name": "diff",
"postGenerateCommands": [
"dub build -c makedeps",
"ddeps -o deps.dot",
"dub fetch ddeps",
"dub run ddeps -- -o deps.dot",
"dot -Tsvg -odeps.svg deps.dot"
]
},
{
"name": "diff-update",
"postGenerateCommands": [
"ddeps --update"
"dub fetch ddeps",
"dub run ddeps -- --update"
]
},
{
Expand Down

0 comments on commit d39453c

Please sign in to comment.