Skip to content

Commit 8d454bf

Browse files
authored
Fix export strategy (#177)
* fix warnings * fix export strategy * remove unused imports * review changes
1 parent 25df24a commit 8d454bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+226
-179
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1 align="center">
22
<br>
3-
<img src="https://github.com/dartclub/turf_dart/blob/update-readme/.github/turf-logo.png" alt="TurfDart Logo" width="250">
3+
<img src="https://github.com/dartclub/turf_dart/blob/main/.github/turf-logo.png" alt="TurfDart Logo" width="250">
44
</h1>
55

66
<h4 align="center">A <a href="https://github.com/Turfjs/turf">TurfJs</a>-like geospatial analysis library written in pure Dart.

benchmark/explode_benchmark.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import 'package:benchmark/benchmark.dart';
2-
import 'package:turf/src/explode.dart';
32
import 'package:turf/turf.dart';
43

54
var poly = Polygon(coordinates: [

benchmark/line_segment_benchmark.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'package:benchmark/benchmark.dart';
22
import 'package:turf/line_segment.dart';
3-
import 'package:turf/helpers.dart';
43

54
void main() {
65
LineString lineString = LineString(

lib/along.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
library turf_along;
22

3+
export 'package:geotypes/geotypes.dart';
34
export "src/along.dart";

lib/area.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
library turf_area;
22

3+
export 'package:geotypes/geotypes.dart';
34
export "src/area.dart";

lib/bbox.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
library turf_bbox;
22

3+
export 'package:geotypes/geotypes.dart';
34
export "src/bbox.dart";

lib/bbox_polygon.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
library turf_bbox_polygon.dart;
22

3+
export 'package:geotypes/geotypes.dart';
34
export 'src/bbox_polygon.dart';

lib/bearing.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
library turf_bearing;
22

3+
export 'package:geotypes/geotypes.dart';
34
export 'src/bearing.dart';
45
export 'src/rhumb_bearing.dart';

lib/boolean.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
library turf_boolean;
22

3+
export 'package:geotypes/geotypes.dart';
34
export 'src/booleans/boolean_clockwise.dart';
45
export 'src/booleans/boolean_concave.dart';
56
export 'src/booleans/boolean_contains.dart';

lib/center.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
library turf_center;
22

3+
export 'package:geotypes/geotypes.dart';
34
export 'src/center.dart';

0 commit comments

Comments
 (0)