File tree Expand file tree Collapse file tree 6 files changed +10
-11
lines changed
Expand file tree Collapse file tree 6 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ scripts:
4646 exec :
4747 concurrency : 1
4848 packageFilters :
49- scope : powersync
49+ scope : powersync_core
5050
5151 analyze:demos :
5252 description : Analyze Dart code in demos.
Original file line number Diff line number Diff line change 55# Avoid committing pubspec.lock for library packages; see
66# https://dart.dev/guides/libraries/private-files#pubspeclock.
77pubspec.lock
8+
9+ /test-db
File renamed without changes.
Original file line number Diff line number Diff line change 11name : powersync_core
2- description : A starting point for Dart libraries or applications.
32version : 1.0.0
4- # repository: https://github.com/my_org/my_repo
3+ homepage : https://powersync.com
4+ repository : https://github.com/powersync-ja/powersync.dart
5+ description : PowerSync Dart SDK - sync engine for building local-first apps.
56
67environment :
78 sdk : ^3.4.3
89
910dependencies :
10- flutter :
11- sdk : flutter
12- # Add regular dependencies here.
1311 sqlite_async : ^0.9.0
1412 # We only use sqlite3 as a transitive dependency,
1513 # but right now we need a minimum of v2.4.6.
1614 sqlite3 : ^2.4.6
17- sqlite3_flutter_libs : ^0.5.23
1815 universal_io : ^2.0.0
1916 powersync_flutter_libs : ^0.4.0
2017 meta : ^1.0.0
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ Future<void> main() async {
1010 /// The monorepo root assets directory
1111 final workerFilename = 'powersync_db.worker.js' ;
1212 final outputPath =
13- path.join (repoRoot, 'packages/powersync /assets/$workerFilename ' );
13+ path.join (repoRoot, 'packages/powersync_core /assets/$workerFilename ' );
1414
15- final workerSourcePath = path.join (
16- repoRoot, './packages/powersync /lib/src/web/powersync_db.worker.dart' );
15+ final workerSourcePath = path.join (repoRoot,
16+ './packages/powersync_core /lib/src/web/powersync_db.worker.dart' );
1717
1818 // And compile worker code
1919 final process = await Process .run (
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ final sqliteUrl =
1010
1111void main () async {
1212 final sqliteCoreFilename = getLibraryForPlatform ();
13- final powersyncPath = "packages/powersync " ;
13+ final powersyncPath = "packages/powersync_core " ;
1414 final sqliteCorePath = '$powersyncPath /$sqliteCoreFilename ' ;
1515
1616 // Download dynamic library
You can’t perform that action at this time.
0 commit comments