- feature(extract): add an 'includeOnly' option (#110, #112)
This makes it easier to focus on the internal structure of a module; e.g. ...
depcruise --include-only '^src/report' --config --output-type dot src | dot -T svg > dependencygraph.svg
... will only show dependencies within src/report
. You can also pass this in the includeOnly option in the configuration format.
- feature(dot): tweaks the line widths and colors + makes the generated graph a "strict digraph" so there's a maximum of 1 edge between vertices (#113 - addresses the visual part of #111)
Also some smaller maintenance issues:
- build(npm): ⬆️ handlebars, eslint, tslint
- build(test): add the integration test to check:full
- ci(appveyor|travis): run on node 11 in preparation of upcoming node 12 LTS