First of all, great generator. It's very simple and effective.
I started a simple project including angular-plotly library which depends on plotly. Using bower install angular-plotly --save works ok and grunt dev works as expected. However if I do a grunt build it fails with the following error:
Running "concat:build" (concat) task
Warning: Unable to read "app/assets/libs/plotly.js" file (Error code: EISDIR). Used --force, continuing.
The concat task was failing because it treated "plotly.js" as a file a not a folder the correction is easy, just add filter: 'isFile' to Gruntfile.js:
Hi,
First of all, great generator. It's very simple and effective.
I started a simple project including angular-plotly library which depends on plotly. Using bower install angular-plotly --save works ok and grunt dev works as expected. However if I do a grunt build it fails with the following error:
The concat task was failing because it treated "plotly.js" as a file a not a folder the correction is easy, just add
filter: 'isFile'
to Gruntfile.js:In the future I suggest it should be included by default in the generator.