An open API service indexing awesome lists of open source software.

https://github.com/auchenberg/grunt-dependo

Running dependo from within a grunt task.
https://github.com/auchenberg/grunt-dependo

Last synced: 6 months ago
JSON representation

Running dependo from within a grunt task.

Awesome Lists containing this project

README

          

#grunt-dependo

Visualize your CommonJS or AMD module dependencies in a force directed graph using D3.js.

###Install

````sh
npm install grunt-dependo
````

###Task Example

````js
dependo: {
main: {
fileName: 'main.html',
targetPath: './example-multipage/www'
},
secondarylib: {
fileName : 'secondarylib.html',
targetPath: './js/'
},
options: {
outputPath: './',
fileName : 'dependencies.html',
format: 'amd'
}
}
````