-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add link to my Patreon page in README
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,15 @@ | |
</a> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://www.patreon.com/bePatron?u=16473892"> | ||
<img src="https://c5.patreon.com/external/logo/[email protected]" alt"Become a Patron" width="170" /> | ||
</a> | ||
</p> | ||
|
||
**Madge** is a developer tool for generating a visual graph of your module dependencies, finding circular dependencies, and give you other useful info. Joel Kemp's awesome [dependency-tree](https://github.com/mrjoelkemp/node-dependency-tree) is used for extracting the dependency tree. | ||
|
||
|
||
* Works for JavaScript (AMD, CommonJS, and ES6 modules) | ||
* Also works for CSS preprocessors (Sass, Stylus, and Less) | ||
* NPM installed dependencies are excluded by default (can be enabled) | ||
|
@@ -259,7 +266,7 @@ $ madge --circular path/src/app.js | |
$ madge --depends wheels.js path/src/app.js | ||
``` | ||
|
||
> Show modules that no one is depending on. | ||
> Show modules that no one is depending on | ||
```sh | ||
$ madge --orphans path/src/ | ||
|