Commit 5163644 1 parent 02fff80 commit 5163644 Copy full SHA for 5163644
File tree 7 files changed +19
-5
lines changed
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
+
1
5
## 1.81.0
2
6
3
7
* 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
+
1
5
## 0.4.5
2
6
3
7
* Add support for parsing the ` @forward ` rule.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sass-parser" ,
3
- "version" : " 0.4.5 " ,
3
+ "version" : " 0.4.6 " ,
4
4
"description" : " A PostCSS-compatible wrapper of the official Sass parser" ,
5
5
"repository" : " sass/sass" ,
6
6
"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
+
1
6
## 14.2.0
2
7
3
8
* No user-visible changes.
17
22
## 14.1.0
18
23
19
24
* 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 .
21
26
22
27
## 14.0.0
23
28
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export 'package:sass/src/ast/selector.dart';
16
16
export 'package:sass/src/async_import_cache.dart' ;
17
17
export 'package:sass/src/exception.dart' show SassFormatException;
18
18
export 'package:sass/src/import_cache.dart' ;
19
+ export 'package:sass/src/importer/node_package.dart' ;
19
20
export 'package:sass/src/interpolation_map.dart' ;
20
21
export 'package:sass/src/value.dart' hide ColorFormat, SpanColorFormat;
21
22
export 'package:sass/src/visitor/find_dependencies.dart' ;
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: sass_api
2
2
# Note: Every time we add a new Sass AST node, we need to bump the *major*
3
3
# version because it's a breaking change for anyone who's implementing the
4
4
# visitor interface(s).
5
- version : 14.2 .0
5
+ version : 14.3 .0
6
6
description : Additional APIs for Dart Sass.
7
7
homepage : https://github.com/sass/dart-sass
8
8
9
9
environment :
10
10
sdk : " >=3.3.0 <4.0.0"
11
11
12
12
dependencies :
13
- sass : 1.81.0
13
+ sass : 1.81.1
14
14
15
15
dev_dependencies :
16
16
dartdoc : ^8.0.14
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.81.0
2
+ version : 1.81.1
3
3
description : A Sass implementation in Dart.
4
4
homepage : https://github.com/sass/dart-sass
5
5
You can’t perform that action at this time.
0 commit comments