mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-03 10:08:01 +01:00
Release 1.54.5 (#108)
This commit is contained in:
parent
eaceb48e83
commit
b7d92dcf0d
23
CHANGELOG.md
23
CHANGELOG.md
@ -1,3 +1,26 @@
|
|||||||
|
## 1.54.5
|
||||||
|
|
||||||
|
* Properly consider `a ~ c` to be a superselector of `a ~ b ~ c` and `a + b +
|
||||||
|
c`.
|
||||||
|
|
||||||
|
* Properly consider `b > c` to be a superselector of `a > b > c`, and similarly
|
||||||
|
for other combinators.
|
||||||
|
|
||||||
|
* Properly calculate specificity for selector pseudoclasses.
|
||||||
|
|
||||||
|
* Deprecate use of `random()` when `$limit` has units to make it explicit that
|
||||||
|
`random()` currently ignores units. A future version will no longer ignore
|
||||||
|
units.
|
||||||
|
|
||||||
|
* Don't throw an error when the same module is `@forward`ed multiple times
|
||||||
|
through a configured module.
|
||||||
|
|
||||||
|
### Embedded Sass
|
||||||
|
|
||||||
|
* Rather than downloading the embedded compiler for the local platform on
|
||||||
|
install, the `sass-embedded` npm package now declares optional dependencies on
|
||||||
|
platform-specific embedded compiler packages.
|
||||||
|
|
||||||
## 1.54.4
|
## 1.54.4
|
||||||
|
|
||||||
* Improve error messages when passing incorrect units that are also
|
* Improve error messages when passing incorrect units that are also
|
||||||
|
@ -84,7 +84,7 @@ packages:
|
|||||||
name: collection
|
name: collection
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.15.0"
|
version: "1.16.0"
|
||||||
convert:
|
convert:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -315,7 +315,7 @@ packages:
|
|||||||
name: sass
|
name: sass
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.54.4"
|
version: "1.54.5"
|
||||||
sass_analysis:
|
sass_analysis:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
@ -331,7 +331,7 @@ packages:
|
|||||||
name: sass_api
|
name: sass_api
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.4"
|
version: "3.0.0"
|
||||||
shelf:
|
shelf:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -508,4 +508,4 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.0"
|
version: "3.1.0"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=2.14.0 <3.0.0"
|
dart: ">=2.17.0 <3.0.0"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: sass_embedded
|
name: sass_embedded
|
||||||
version: 1.54.4
|
version: 1.54.5
|
||||||
description: An implementation of the Sass embedded protocol using Dart Sass.
|
description: An implementation of the Sass embedded protocol using Dart Sass.
|
||||||
homepage: https://github.com/sass/dart-sass-embedded
|
homepage: https://github.com/sass/dart-sass-embedded
|
||||||
|
|
||||||
@ -14,8 +14,8 @@ dependencies:
|
|||||||
meta: ^1.1.0
|
meta: ^1.1.0
|
||||||
path: ^1.6.0
|
path: ^1.6.0
|
||||||
protobuf: ^2.0.0
|
protobuf: ^2.0.0
|
||||||
sass: 1.54.4
|
sass: 1.54.5
|
||||||
sass_api: ^2.0.0
|
sass_api: ^3.0.0
|
||||||
source_span: ^1.1.0
|
source_span: ^1.1.0
|
||||||
stack_trace: ^1.6.0
|
stack_trace: ^1.6.0
|
||||||
stream_channel: ">=1.6.0 <3.0.0"
|
stream_channel: ">=1.6.0 <3.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user