File tree Expand file tree Collapse file tree 7 files changed +19
-5
lines changed Expand file tree Collapse file tree 7 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 1+ ## 1.81.1
2+
3+ * No user-visible changes.
4+
15## 1.81.0
26
37* Fix a few cases where deprecation warnings weren't being emitted for global
Original file line number Diff line number Diff line change 1+ ## 0.4.6
2+
3+ * No user-visible changes.
4+
15## 0.4.5
26
37* Add support for parsing the ` @forward ` rule.
Original file line number Diff line number Diff line change 11{
22 "name" : " sass-parser" ,
3- "version" : " 0.4.5 " ,
3+ "version" : " 0.4.6 " ,
44 "description" : " A PostCSS-compatible wrapper of the official Sass parser" ,
55 "repository" : " sass/sass" ,
66 "author" : " Google Inc." ,
Original file line number Diff line number Diff line change 1+ ## 14.3.0
2+
3+ * Add ` NodePackageImporter ` , which loads ` pkg: ` URLs from ` node_modules ` within
4+ the provided ` entryPointDirectory ` .
5+
16## 14.2.0
27
38* No user-visible changes.
1722## 14.1.0
1823
1924* Add ` Expression.isCalculationSafe ` , which returns true when this expression
20- can safely be used in a calcuation .
25+ can safely be used in a calculation .
2126
2227## 14.0.0
2328
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export 'package:sass/src/ast/selector.dart';
1616export 'package:sass/src/async_import_cache.dart' ;
1717export 'package:sass/src/exception.dart' show SassFormatException;
1818export 'package:sass/src/import_cache.dart' ;
19+ export 'package:sass/src/importer/node_package.dart' ;
1920export 'package:sass/src/interpolation_map.dart' ;
2021export 'package:sass/src/value.dart' hide ColorFormat, SpanColorFormat;
2122export 'package:sass/src/visitor/find_dependencies.dart' ;
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: sass_api
22# Note: Every time we add a new Sass AST node, we need to bump the *major*
33# version because it's a breaking change for anyone who's implementing the
44# visitor interface(s).
5- version : 14.2 .0
5+ version : 14.3 .0
66description : Additional APIs for Dart Sass.
77homepage : https://github.com/sass/dart-sass
88
99environment :
1010 sdk : " >=3.3.0 <4.0.0"
1111
1212dependencies :
13- sass : 1.81.0
13+ sass : 1.81.1
1414
1515dev_dependencies :
1616 dartdoc : ^8.0.14
Original file line number Diff line number Diff line change 11name : sass
2- version : 1.81.0
2+ version : 1.81.1
33description : A Sass implementation in Dart.
44homepage : https://github.com/sass/dart-sass
55
You can’t perform that action at this time.
0 commit comments