Skip to content

v1.0.0

Choose a tag to compare

@LukasHechenberger LukasHechenberger released this 11 Jan 08:16
· 185 commits to master since this release

1.0.0 (2021-01-11)

Features

  • Detect indented syntax from language attribute (#104) (db0484c)

BREAKING CHANGES

  • Now supports both SASS and SCSS syntax without the need to set the name filter option.

If you enabled SCSS before, just remove the filter options to support both:

  export default {
    ...
    plugins: [
      ...
      svelte({
        preprocess: {
-         style: sass({}, { name: 'scss' }),
+         style: sass(),
        },
      }),
    ],
  };