Yeoman generator based on the ngBoilerplate kickstarter, a best-practice boilerplate for any scale Angular project built on a highly modular, folder-by-feature structure.
I'm using ui-select. As indicated in the instructions I referenced the necessary files (select.js & select.css) in Gruntfile.js to be copied during build as so:
I noticed that only the .js files are getting copied but not the css files. I reviewed Gruntfile.js and found that there are no vendorcss "copy" tasks. I added the following:
Hello,
I'm using ui-select. As indicated in the instructions I referenced the necessary files (select.js & select.css) in Gruntfile.js to be copied during
build
as so:I noticed that only the
.js
files are getting copied but not the css files. I reviewed Gruntfile.js and found that there are no vendorcss "copy" tasks. I added the following:I then duplicated all the
build_vendorjs
references to also executebuild_vendorcss
.Hope it is useful to complete the generator's
Gruntfile.js
in the future :)