dart-sass/pkg/sass_api/pubspec.yaml
Jennifer Thakar 4f67c4dd30
Fix RecursiveAstVisitor (#1525)
`visitCalculationExpression` is now properly implemented.

This also adds concrete test classes that extend `RecursiveAstVisitor`
and `RecursiveStatementVisitor` to ensure similar issues are avoided in
the future whenever new AST nodes are added.
2021-10-05 18:36:45 -07:00

17 lines
414 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: 1.0.0-beta.15
description: Additional APIs for Dart Sass.
homepage: https://github.com/sass/dart-sass
environment:
sdk: '>=2.12.0 <3.0.0'
dependencies:
sass: 1.43.1
dependency_overrides:
sass: {path: ../..}