Skip to content

Sass Migrator 2.6.1

Latest

Choose a tag to compare

@sassbot sassbot released this 30 Jun 20:39

if() Function Migrator

  • Fix a bug where if(C, null, V) would be incorrectly migrated to if(sass(C): null) rather than if(not sass(C): V).

  • Migrate if(C, V, null) to if(sass(C): V) rather than if(sass(C): V; else: null). The extra else clause was redundant.

See the full changelog for changes in earlier releases.