gulp - Bower package css not added to vendor.css -
i'm using yeoman generator (https://github.com/swiip/generator-gulp-angular) project. , have added couple of bower libraries, namely, videojs, ngdialog.
the problem i'm experiencing css files included in these libraries aren't being packaged vendor.css file rest of packages are. know that generator uses wiredep, i'm afraid don't know enough find out went wrong.
basically, when go view source, see there style includes underneath vendor.css style include, eg.
<link rel="stylesheet" href="../bower_components/ngdialog/css/ngdialog.css">
also notice how included using "../". break if i'm in html file in directory other root.
any pointers?
thanks. john.
basically don't have worry building process, gulpfile
provided gulp-angular
configured future including bower components.
once run bower install your_component
, sure run gulp build
again in command line, include needed styles index.html.
if know more underlying process that, may check yourapp/src/index.html
line 12 line 20 sense of it. how wiredep works bower components, official document should suffice.