diff --git a/lib/sass.dart b/lib/sass.dart index 0ef241b6..2127e081 100644 --- a/lib/sass.dart +++ b/lib/sass.dart @@ -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. /// diff --git a/lib/src/compile.dart b/lib/src/compile.dart index b5dfab9e..043e84f8 100644 --- a/lib/src/compile.dart +++ b/lib/src/compile.dart @@ -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'; diff --git a/lib/src/importer.dart b/lib/src/importer.dart index ac1d3107..8196d585 100644 --- a/lib/src/importer.dart +++ b/lib/src/importer.dart @@ -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. ///