You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I'm trying to clean up my application structure by putting bower_components in a vendor folder like this:
project
|-app
||-vendor
|||-bower_components
Inside my vendor folder, I have the bower.json and the .bowerrc files, and I've installed all my dependencies. I'm basing my wiredep code off of an Angular Yeoman generator, so maybe I'm messing it up a bit but it looks like this now:
I added some configuration so that the bower.json and .bowerrc files would be found correctly inside the vendor folder because that was stopping grunt from running, but I'm now stuck on linking. When I run the serve task, which uses wiredep, the html is pointing to the vendor/bower_components/ folder for each dependency but not finding any of the files. I feel like maybe I messed something up, how do I fix this?
The text was updated successfully, but these errors were encountered:
So I'm trying to clean up my application structure by putting
bower_components
in avendor
folder like this:Inside my
vendor
folder, I have thebower.json
and the.bowerrc
files, and I've installed all my dependencies. I'm basing mywiredep
code off of an Angular Yeoman generator, so maybe I'm messing it up a bit but it looks like this now:I added some configuration so that the
bower.json
and.bowerrc
files would be found correctly inside thevendor
folder because that was stopping grunt from running, but I'm now stuck on linking. When I run the serve task, which uses wiredep, the html is pointing to thevendor/bower_components/
folder for each dependency but not finding any of the files. I feel like maybe I messed something up, how do I fix this?The text was updated successfully, but these errors were encountered: