Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
j4qfrost committed Feb 21, 2024
1 parent b5b461e commit 418b478
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/core/lib/src/runtime/compiler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,26 @@ class ConduitCompiler extends Compiler {
{'name': 'conduit_codable', 'path': 'codable'},
{'name': 'conduit_common', 'path': 'common'},
{'name': 'conduit_config', 'path': 'config'},
{'name': 'conduit_core', 'path': 'core'},
{'name': 'conduit_isolate_exec', 'path': 'isolate_exec'},
{'name': 'conduit_open_api', 'path': 'open_api'},
{'name': 'conduit_password_hash', 'path': 'password_hash'},
{'name': 'conduit_postgres', 'path': 'postgres'},
{'name': 'conduit_runtime', 'path': 'runtime'},
];
_overwritePackageDependency(context, 'conduit_core', conduitPackages);
_overwritePackageDependency(context, 'conduit', conduitPackages);

final conduitCorePackages = [
{'name': 'conduit_codable', 'path': 'codable'},
{'name': 'conduit_common', 'path': 'common'},
{'name': 'conduit_config', 'path': 'config'},
{'name': 'conduit_isolate_exec', 'path': 'isolate_exec'},
{'name': 'conduit_open_api', 'path': 'open_api'},
{'name': 'conduit_password_hash', 'path': 'password_hash'},
{'name': 'conduit_postgres', 'path': 'postgres'},
{'name': 'conduit_runtime', 'path': 'runtime'},
];
_overwritePackageDependency(context, 'conduit_core', conduitCorePackages);

final runtimePackages = [
{'name': 'conduit_isolate_exec', 'path': 'isolate_exec'},
Expand Down

0 comments on commit 418b478

Please sign in to comment.