Is there a way to stamp '
depends' into the
package.json, somehow declaring nested dependencies ?
For example:
{
"amd": {},
"volo": {
"baseDir": "media/js/libs/",
"dependencies": {
"jquery.flexslider": "github:woothemes/FlexSlider/master#./jquery.flexslider.js",
"jquery.prettyphoto": "github:scaron/prettyphoto/master#js/jquery.prettyPhoto.js",
"jquery.quicksand": "github:razorjack/quicksand/v1.3"
}
}
}
I'd like to be able to simply run: volo add
But currently I must run: volo add depends=jquery
But what happens if not all of my dependencies depend on jQuery ?
Is there a way to declare nested dependencies ?