File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- ## 1.0.1-wip
1
+ ## 1.0.1
2
2
3
3
- Update ` ExpressionsProcessor.processFont ` to handle null expressions.
4
4
- Require Dart 3.0.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Parsing CSS is easy!
11
11
``` dart
12
12
import 'package:csslib/parser.dart';
13
13
14
- main() {
14
+ void main() {
15
15
var stylesheet = parse(
16
16
'.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }');
17
17
print(stylesheet.toDebugString());
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ analyzer:
6
6
strict-inference : true
7
7
strict-raw-types : true
8
8
errors :
9
- comment_references : ignore # too many false positives
9
+ comment_references : ignore # too many false positives
10
10
11
11
linter :
12
12
rules :
Original file line number Diff line number Diff line change 1
1
name : csslib
2
- version : 1.0.1-wip
2
+ version : 1.0.1
3
3
description : A library for parsing and analyzing CSS (Cascading Style Sheets).
4
4
repository : https://github.com/dart-lang/csslib
5
5
You can’t perform that action at this time.
0 commit comments