mirror of
https://github.com/danog/dart-sass.git
synced 2025-01-22 13:51:31 +01:00
parent
df5f3af4e9
commit
be4ca60045
@ -1,3 +1,8 @@
|
||||
## 1.23.3
|
||||
|
||||
* Fix a bug where selectors were being trimmed over-eagerly when `@extend`
|
||||
crossed module boundaries.
|
||||
|
||||
## 1.23.2
|
||||
|
||||
### Command-Line Interface
|
||||
|
@ -400,6 +400,7 @@ class Extender {
|
||||
|
||||
for (var extender in extenders) {
|
||||
if (extender.isEmpty) continue;
|
||||
_sourceSpecificity.addAll(extender._sourceSpecificity);
|
||||
extender._extensions.forEach((target, newSources) {
|
||||
// Private selectors can't be extended across module boundaries.
|
||||
if (target is PlaceholderSelector && target.isPrivate) return;
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: sass
|
||||
version: 1.23.2
|
||||
version: 1.23.3
|
||||
description: A Sass implementation in Dart.
|
||||
author: Sass Team
|
||||
homepage: https://github.com/sass/dart-sass
|
||||
|
Loading…
x
Reference in New Issue
Block a user