dougludlow/plugin-sass

Any way to just grab the output css from the import?

mr-rodgers opened this issue · 1 comments

Similar to how plugin-text does it. This is useful for angular2, where injecting directly into the head has no effect. Instead, you do something like:

import styleText from './path/to/file.scss!';

@Component({
  ...
  styles: [styleText]
})
export class Component { }

Dup of #31