Skip to content

Commit

Permalink
Updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
guyluz11 committed Nov 9, 2023
1 parent 70f39f8 commit 45a0a79
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
9 changes: 7 additions & 2 deletions bin/cbj_hub.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ import 'package:cbj_integrations_controller/infrastructure/shared_variables.dart
import 'package:cbj_integrations_controller/infrastructure/system_commands/system_commands_manager_d.dart';
import 'package:cbj_integrations_controller/initialize_integrations_controller.dart';
import 'package:cbj_integrations_controller/injection.dart';
import 'package:network_tools/network_tools.dart';

Future<void> main(List<String> arguments) async {
configureNetworkTools('network_tools_db');

setInstancesOfRepos(arguments.firstOrNull ?? Directory.current.path);
// arguments[0] is the location of the project
// network.configureNetworkTools('network_tools_db');
await initializeIntegrationsController(arguments: arguments, env: Env.devPc);
await initializeIntegrationsController(
projectRootDirectoryPath: arguments.firstOrNull ?? Directory.current.path,
env: Env.devPc,
);

await BootUp.setup();
}
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,28 +50,28 @@ dependencies:
# Service discovery over multicast DNS (mDNS), Bonjour, and Avahi.
multicast_dns: ^0.3.2+4
# Helps you discover open ports, devices on subnet and more.
network_tools: ^3.2.1
network_tools: ^4.0.1
# Provides runtime support for a Dart implementation of protobufs.
protobuf: ^3.1.0
# Extends the capabilities of Dart Streams and StreamControllers.
rxdart: ^0.27.7
# Simple, fast generation of RFC4122 UUIDs.
uuid: ^4.1.0
uuid: ^4.2.1

dev_dependencies:
# A build system for Dart code generation and modular compilation.
build_runner:

# A generator for injectable library
# Code generator for unions/pattern-matching/copy.
freezed: ^2.4.1
freezed: ^2.4.5
# Automatically generates Hive TypeAdapters to store any class
hive_generator: ^2.0.1
# Code generator for the Isar Database. Finds classes annotated with @Collection.
# isar_generator: ^3.0.5
# Collection of lint rules for Dart and Flutter projects
lint: ^2.1.2
lint: ^2.2.0
# Library for mocks
mockito: ^5.4.2
# A full featured library for writing and running Dart tests across platforms.
test: ^1.24.7
test: ^1.24.9

0 comments on commit 45a0a79

Please sign in to comment.