mrcrowl / vscode-easy-less

Easy LESS extension for Visual Studio Code
MIT License
68 stars 23 forks source link

Combine multiple linked less files to one main.css #93

Closed jonalange closed 1 year ago

jonalange commented 1 year ago

Maybe that's already possible, but I couldn't find it in the docs.

Currently every .less gets converted to it's own css file, doesn't matter if anything is linked.

For example when I use in a main.less

@import "_test/one";
@import "_test/two";

It's not getting combined/ imported in the main.css. It will just be empty and one.css and two.css get their own file.

jonalange commented 1 year ago

Well, it's working but it removes comments. That's why I thought it doesn't work! My bad!