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.
- Host: GitHub
- URL: https://github.com/auchenberg/grunt-dependo
- Owner: auchenberg
- License: mit
- Created: 2013-03-10T21:51:27.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-11-05T13:05:30.000Z (almost 11 years ago)
- Last Synced: 2024-11-06T11:48:57.297Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 182 KB
- Stars: 17
- Watchers: 6
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
}
}
````