Skip to content

Commit

Permalink
Add exports to importer.dart
Browse files Browse the repository at this point in the history
This matches the APIs of other sub-directories.
  • Loading branch information
nex3 committed Nov 3, 2017
1 parent 3397bc2 commit 40bcf98
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions lib/sass.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ import 'src/importer.dart';
import 'src/sync_package_resolver.dart';

export 'src/importer.dart';
export 'src/importer/filesystem.dart';
export 'src/importer/package.dart';
export 'src/importer/result.dart';

/// Loads the Sass file at [path], compiles it to CSS, and returns the result.
///
Expand Down
2 changes: 0 additions & 2 deletions lib/src/compile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@

import 'ast/sass.dart';
import 'importer.dart';
import 'importer/filesystem.dart';
import 'importer/node.dart';
import 'importer/package.dart';
import 'io.dart';
import 'sync_package_resolver.dart';
import 'util/path.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/importer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
import 'importer/no_op.dart';
import 'importer/result.dart';

export 'importer/filesystem.dart';
export 'importer/package.dart';
export 'importer/result.dart';

/// An interface for importers that resolves URLs in `@import`s to the contents
/// of Sass files.
///
Expand Down

0 comments on commit 40bcf98

Please sign in to comment.