File tree Expand file tree Collapse file tree 10 files changed +10
-18
lines changed Expand file tree Collapse file tree 10 files changed +10
-18
lines changed Original file line number Diff line number Diff line change 47
47
matrix :
48
48
# Add macos-latest and/or windows-latest if relevant for this package.
49
49
os : [ubuntu-latest]
50
- sdk : [2.18 .0, dev]
50
+ sdk : [3.0 .0, dev]
51
51
steps :
52
52
- uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
53
53
- uses : dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
Original file line number Diff line number Diff line change
1
+ ## 0.10.13-wip
2
+
3
+ - Require Dart 3.0
4
+
1
5
## 0.10.12
2
6
3
7
* Add additional types at API boundaries.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ In this package we provide:
16
16
original source map specification. These data types are great for tracking
17
17
source locations on source maps, but they can also be used by tools to
18
18
reporting useful error messages that include on source locations.
19
- * A builder that creates a source map programatically and produces the encoded
19
+ * A builder that creates a source map programmatically and produces the encoded
20
20
source map format.
21
21
* A parser that reads the source map format and provides APIs to read the
22
22
mapping information.
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library source_maps.source_map_span;
6
-
7
5
import 'package:source_span/source_span.dart' ;
8
6
9
7
/// A [SourceSpan] for spans coming from or being written to source maps.
Original file line number Diff line number Diff line change 1
1
name : source_maps
2
- version : 0.10.12
2
+ version : 0.10.13-wip
3
3
description : A library to programmatically manipulate source map files.
4
4
repository : https://github.com/dart-lang/source_maps
5
5
6
6
environment :
7
- sdk : ' >=2.18.0 < 3.0.0'
7
+ sdk : ^ 3.0.0
8
8
9
9
dependencies :
10
10
source_span : ^1.8.0
11
11
12
12
dev_dependencies :
13
- dart_flutter_team_lints : ^0.1 .0
13
+ dart_flutter_team_lints : ^1.0 .0
14
14
term_glyph : ^1.2.0
15
15
test : ^1.16.0
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library test.source_maps_test;
6
-
7
5
import 'dart:convert' ;
8
6
9
7
import 'package:source_maps/source_maps.dart' ;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library test.end2end_test;
6
-
7
5
import 'package:source_maps/source_maps.dart' ;
8
6
import 'package:source_span/source_span.dart' ;
9
7
import 'package:test/test.dart' ;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library test.printer_test;
6
-
7
5
import 'dart:convert' ;
8
6
9
7
import 'package:source_maps/source_maps.dart' ;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library polymer.test.refactor_test;
6
-
7
- import 'package:source_maps/parser.dart' show parse, Mapping;
5
+ import 'package:source_maps/parser.dart' show Mapping, parse;
8
6
import 'package:source_maps/refactor.dart' ;
9
7
import 'package:source_span/source_span.dart' ;
10
8
import 'package:term_glyph/term_glyph.dart' as term_glyph;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- library test.vlq_test;
6
-
7
5
import 'dart:math' ;
8
6
9
7
import 'package:source_maps/src/vlq.dart' ;
You can’t perform that action at this time.
0 commit comments