Skip to content

Releases: sass/migrator

Sass Migrator 1.5.0

18 Jun 23:44
3d6b449
Compare
Choose a tag to compare

Division Migrator

  • When migrating division where the divisor is a common constant value, the migrator will now convert it to multiplication, rather than math.div.

    For example: $variable / 2 would be migrated to $variable * 0.5.

    To disable this and migrate all division to math.div, pass --no-multiplication.

See the full changelog for changes in earlier releases.

Sass Migrator 1.4.5

10 Jun 16:52
3f9dea5
Compare
Choose a tag to compare
  • Glob syntax will no longer be resolved if a file with that literal name exists.

See the full changelog for changes in earlier releases.

Sass Migrator 1.4.4

07 Jun 18:35
acc3539
Compare
Choose a tag to compare

Division Migrator

  • Fix a bug where @use "sass:math" would sometimes be incorrectly inserted after other rules.

See the full changelog for changes in earlier releases.

Sass Migrator 1.4.3

26 May 23:24
92fe5ec
Compare
Choose a tag to compare

Division Migrator

  • Fix a crash when encountering parentheses in an expression that's definitely not division.

See the full changelog for changes in earlier releases.

Sass Migrator 1.4.2

26 May 20:25
acce840
Compare
Choose a tag to compare

Division Migrator

  • Fix a bug where negated division could be migrated incorrectly.

See the full changelog for changes in earlier releases.

Sass Migrator 1.4.1

24 May 23:45
f39df79
Compare
Choose a tag to compare
  • Globs containing ** should now be properly resolved when running on Node.

See the full changelog for changes in earlier releases.

Sass Migrator 1.4.0

21 May 15:51
Compare
Choose a tag to compare

Division Migrator

  • The division migrator is now enabled, and will convert slash-as-division to the math.div function.

See the full changelog for changes in earlier releases.

Sass Migrator 1.3.9

30 Apr 19:08
ef02c63
Compare
Choose a tag to compare
  • Fix crash when running on Node.

See the full changelog for changes in earlier releases.

Sass Migrator 1.3.8

29 Apr 00:03
b4fc3d4
Compare
Choose a tag to compare
  • No user-visible changes.

See the full changelog for changes in earlier releases.

Sass Migrator 1.3.7

30 Mar 18:32
e47ce5f
Compare
Choose a tag to compare

Module Migrator

  • Fix a crash in a rare edge case involving orphan import-only files and multiple load paths.

See the full changelog for changes in earlier releases.