Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Aug 15, 2024
1 parent dfda6c2 commit e844798
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/lw_file_system/lib/src/api/base/directory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ mixin GeneralDirectoryFileSystem<T> on GeneralFileSystem {
Future<void> reset() async {
final files = await getRootDirectory(readData: false);
for (final file in files.assets) {
deleteAsset(file.location.path);
deleteAsset(file.path);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/lw_file_system/lib/src/api/base/key.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class KeyDirectoryFileSystem extends KeyFileSystem {
final remaining = [...directory.assets];
while (remaining.isNotEmpty) {
final asset = remaining.removeAt(0);
final path = asset.location.path;
final path = asset.path;
if (asset is RawFileSystemFile) {
if (path.endsWith(config.keySuffix)) {
assets.add(path.substring(0, path.length - config.keySuffix.length));
Expand Down
2 changes: 1 addition & 1 deletion packages/lw_file_system/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
git:
url: https://github.com/LinwoodDev/dart_pkgs
path: packages/lw_file_system_api
ref: 5215af151f00842fa1e692b12ae158d39e3da050
ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573
# path: ^1.8.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/material_leap/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies:
git:
url: https://github.com/LinwoodDev/dart_pkgs
path: packages/dart_leap
ref: d45bd54f2efd6a861d6f44a8b833575b0482dc4c
ref: dfda6c2e3cef2e29511f97e9470fd4deb8e0c573
window_manager: ">=0.3.9 <0.6.0"
flutter_bloc: ^8.1.5
web: ^1.0.0
Expand Down

0 comments on commit e844798

Please sign in to comment.