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
I created a project using the ng-factory yeoman generator. When I create any custom .less files in /app/styles they are not run through gulp-less but simply copied to .tmp/styles and renamed with a .css extension. This then causes gulp-autoprefixer to error out since it doesn't recognize the less syntax.
I played with things a bit and determined that the glob condition is not evaluating true for style files. I changed this to a regex and it seems to work now. See pull request #4 for my solution.
If I'm doing something wrong, please let me know.
Regards,
Andrew
The text was updated successfully, but these errors were encountered:
I created a project using the ng-factory yeoman generator. When I create any custom .less files in /app/styles they are not run through gulp-less but simply copied to .tmp/styles and renamed with a .css extension. This then causes gulp-autoprefixer to error out since it doesn't recognize the less syntax.
I played with things a bit and determined that the glob condition is not evaluating true for style files. I changed this to a regex and it seems to work now. See pull request #4 for my solution.
If I'm doing something wrong, please let me know.
Regards,
Andrew
The text was updated successfully, but these errors were encountered: