Skip to content

Commit

Permalink
Copy sync worker to demos
Browse files Browse the repository at this point in the history
  • Loading branch information
mugikhan committed Nov 1, 2024
1 parent 5d3edea commit 72b8329
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion demos/django-todolist/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-anonymous-auth/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-edge-function-auth/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-simple-chat/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
4 changes: 2 additions & 2 deletions demos/supabase-todolist-drift/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -686,14 +686,14 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_attachments_helper:
dependency: "direct main"
description:
path: "../../packages/powersync_attachments_helper"
relative: true
source: path
version: "0.6.13"
version: "0.6.14"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-todolist-optional-sync/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
4 changes: 2 additions & 2 deletions demos/supabase-todolist/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -478,14 +478,14 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.8.9"
version: "1.9.0"
powersync_attachments_helper:
dependency: "direct main"
description:
path: "../../packages/powersync_attachments_helper"
relative: true
source: path
version: "0.6.13"
version: "0.6.14"
powersync_flutter_libs:
dependency: "direct overridden"
description:
Expand Down
3 changes: 2 additions & 1 deletion scripts/compile_webworker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Future<void> main() async {
}
final demoOutputPath = path.join(demoWebDir, workerFilename);
File(dbWorkerOutputPath).copySync(demoOutputPath);
File(syncWorkerOutputPath).copySync(demoOutputPath);
File(syncWorkerOutputPath)
.copySync(path.join(demoWebDir, syncWorkerFilename));
}
}

0 comments on commit 72b8329

Please sign in to comment.