madskristensen / BundlerMinifier

Visual Studio extension
Other
614 stars 172 forks source link

Bundle SASS files #93

Open ricksmt opened 8 years ago

ricksmt commented 8 years ago

Feature request to enable bundling of SASS/SCSS files.

madskristensen commented 8 years ago

Sass and LESS has built in support for bundling by creating files containing only @import statements.

ricksmt commented 8 years ago

But if I want to deploy/share a single Sass file? An @import file without the files it imports is no good, right?

madskristensen commented 8 years ago

I don't understand?

If you have a single file with multiple @import directives in it and then compile only that one file, you effectively have bundling for LESS/Sass

ricksmt commented 8 years ago

But compiling outputs a CSS file. If I want them to tweak something or let them override settings in another file, then I need to give them a bundled Sass version of the file, not the CSS.

madskristensen commented 8 years ago

Got it. Thanks for clarifying