Closed louiswalch closed 7 years ago
I'm having some issues getting this to work with Grunt, can you please take a look:
This is the less section of my Gruntfile.js:
less
less: { development: { options: { paths: ['<%= directory %>assets_new/css'], plugins: [require('less-plugin-glob')] }, files: { '<%= directory %>assets_new/css/style.css': '<%= directory %>assets_new/css/src/__bootstrap.less' } } },
My less file contains: @import "breakpoint_desktop/**";
@import "breakpoint_desktop/**";
When I build, I'm getting the following error:
FileError: 'breakpoint_desktop/.less' wasn't found in... @import "breakpoint_desktop/";
Thanks.
Figured out my issue, I had a super old version of Grunt installed. Totally forget to keep it updated. Thanks for the great plugin.
I'm having some issues getting this to work with Grunt, can you please take a look:
This is the
less
section of my Gruntfile.js:My less file contains:
@import "breakpoint_desktop/**";
When I build, I'm getting the following error:
Thanks.