madskristensen / BundlerMinifier

Visual Studio extension
Other
614 stars 172 forks source link

support CSS Modules #145

Open gulbanana opened 8 years ago

gulbanana commented 8 years ago

CSS Modules are a feature in webpack, postcss and some other parts of the bundling ecosystem which allow you to write scoped CSS. It leverages the import/require module hierarchy and does name mangling to produce CSS bundles out of stylesheets local to components, which can then be referenced in JS code.

Full doc: https://github.com/css-modules/css-modules

natelaff commented 8 years ago

Is this what's causing my minifying to error out with messages like "Unexpected token, found '@import'" and "Unexpected token, found 'url(...)'" ?