Skip to content

Tags: sass/migrator

Tags

2.6.0

Toggle 2.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Support import-only files with include rules (#300)

* Support import-only files with include rules

This enables migration of some nested/late imports that the migrator
couldn't previously handle by first wrapping the file that's depended on
via nested import in a mixin and then `@include`ing that mixin in the
import-only file.

* Allow multiple includes and arbitrary arguments

This adds a `NamespacedSerializer` utility class, which allows us to
copy the include rules with arbitrary arguments while still ensuring
that we use the right namespaces and add any additional use rules when
migrating.

* Run formatter

* Use patching instead of serialization

2.5.7

Toggle 2.5.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Support `@forward` rules with `--migrate-deps` (#299)

2.5.6

Toggle 2.5.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Increase the Node.js version we test and release against (#295)

See #287

2.5.5

Toggle 2.5.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Use a defined Node version (#294)

2.5.4

Toggle 2.5.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Get the Node and npm versions necessary for trusted publishing (#293)

2.5.3

Toggle 2.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Enable the permissions necessary to do npm trusted publishing (#292)

See #287

2.5.2

Toggle 2.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Use trusted publishing rather than tokens to deploy to npm (#291)

See #287

2.5.1

Toggle 2.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add a changelog entry for 2.5.1 (#290)

2.5.0

Toggle 2.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #288 from sass/fix-ci

Fix `dart pub add` invocation

2.4.2

Toggle 2.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Improved late import hoisting (#282)

* Improved late import hoisting

While 2.4.0 allowed the migrator to hoist late imports that did not emit
CSS themselves, this additionally allows it to hoist them above safe at
rules in the same file, even if the imports themselves do actually emit
CSS.

* Code review