dart-sass/pkg/sass_api/pubspec.yaml
Natalie Weizenbaum 702a7ee7a1
Fix the performance of selector span expansion (#1929)
Instead of calling `SourceFile.getText()`, which creates string copies
of a substantial subset of the text of the file every time, this
directly accesses the file's underlying code units without doing any
copies.

Closes #1913
2023-04-06 14:44:29 -07:00

20 lines
445 B
YAML

name: sass_api
# Note: Every time we add a new Sass AST node, we need to bump the *major*
# version because it's a breaking change for anyone who's implementing the
# visitor interface(s).
version: 6.2.0
description: Additional APIs for Dart Sass.
homepage: https://github.com/sass/dart-sass
environment:
sdk: ">=2.17.0 <3.0.0"
dependencies:
sass: 1.61.0
dev_dependencies:
dartdoc: ^5.0.0
dependency_overrides:
sass: { path: ../.. }