Skip to content

Commit

Permalink
fix import/export needed deps
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 25, 2024
1 parent 1fb4598 commit b040663
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion storage/lib/src/common/storage_service_mixin.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'package:tekartik_firebase/firebase.dart';
import 'package:tekartik_firebase_storage/storage.dart';

/// Storage service mixin.
Expand Down
1 change: 1 addition & 0 deletions storage/lib/storage.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export 'package:tekartik_firebase/firebase.dart';
export 'package:tekartik_firebase_storage/src/storage.dart'
show
FirebaseStorage,
Expand Down
1 change: 0 additions & 1 deletion storage/test/storage_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
library tekartik_firebase_storage.storage__test;

import 'package:tekartik_firebase/firebase.dart';
import 'package:tekartik_firebase/firebase_mixin.dart';
import 'package:tekartik_firebase_storage/storage.dart';
import 'package:test/test.dart';
Expand Down
1 change: 0 additions & 1 deletion storage_browser/lib/src/storage_browser.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'package:firebase/firebase.dart' // ignore: deprecated_member_use
as native;
import 'package:tekartik_firebase/firebase.dart';
import 'package:tekartik_firebase/firebase_mixin.dart'; // ignore: implementation_imports
import 'package:tekartik_firebase_browser/src/firebase_browser.dart'; // ignore: implementation_imports
import 'package:tekartik_firebase_storage/storage.dart';
Expand Down
1 change: 0 additions & 1 deletion storage_fs/lib/src/storage_fs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import 'package:fs_shim/fs_shim.dart' as fs;
import 'package:fs_shim/utils/path.dart';
import 'package:tekartik_common_utils/date_time_utils.dart';
import 'package:tekartik_common_utils/map_utils.dart';
import 'package:tekartik_firebase/firebase.dart';
import 'package:tekartik_firebase/firebase_mixin.dart';
import 'package:tekartik_firebase_local/firebase_local.dart';
import 'package:tekartik_firebase_storage/storage.dart';
Expand Down
1 change: 1 addition & 0 deletions storage_fs/lib/storage_fs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'package:fs_shim/fs.dart';
import 'package:tekartik_firebase_local/firebase_local.dart';
import 'package:tekartik_firebase_storage/storage.dart';
import 'package:tekartik_firebase_storage_fs/src/storage_fs.dart' as impl;
export 'package:tekartik_firebase_storage/storage.dart';

/// A global in memory service
StorageService get storageServiceMemory => impl.storageServiceFsMemory;
Expand Down
1 change: 1 addition & 0 deletions storage_fs/lib/storage_fs_io.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'package:fs_shim/fs_io.dart';
import 'package:tekartik_firebase_storage/storage.dart';
import 'package:tekartik_firebase_storage_fs/src/storage_fs.dart' as impl;
export 'storage_fs.dart';

StorageService get storageServiceIo => impl.storageServiceFsIo;

Expand Down
3 changes: 2 additions & 1 deletion storage_test/lib/storage_test.dart
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import 'package:dev_test/test.dart';
import 'package:path/path.dart';
import 'package:tekartik_common_utils/common_utils_import.dart';
import 'package:tekartik_firebase/firebase.dart';
import 'package:tekartik_firebase_storage/storage.dart';
import 'package:tekartik_firebase_storage_test/src/import.dart';

export 'package:tekartik_firebase_storage/storage.dart';

/// Storage option
class TestStorageOptions {
final String? bucket;
Expand Down

0 comments on commit b040663

Please sign in to comment.