thgh / rollup-plugin-scss

Rollup and compile multiple .scss, .sass and .css imports
MIT License
135 stars 46 forks source link

Missing output #20

Closed davestewart closed 6 years ago

davestewart commented 6 years ago

Hi there.

Hopefully I'm just being a dummy - but on using the plugin, I don't seem to get any style output.

Here are the relevant files:

The compiled JS file has no CSS in it:

There is also no bundle output.

What am I missing?

Thanks, Dave

davestewart commented 6 years ago

It was being created in the root!

For those that follow, you need to specify the full output path:

    scss({
      output: 'dist/styles.css'
    }),