├── .github └── workflows │ └── dart.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin ├── main.dart └── src │ ├── assert_pubspec_yaml_consistency.dart │ ├── commands │ ├── boot_command.dart │ ├── boot_command_runner.dart │ ├── deps_command.dart │ ├── deps_command_runner.dart │ ├── evolve_command.dart │ ├── evolve_command_runner.dart │ ├── init_command.dart │ ├── probe_command.dart │ └── probe_command_runner.dart │ ├── options │ ├── boot_mode.dart │ ├── correct.dart │ ├── dry_run.dart │ ├── lock.dart │ ├── pick_most_used.dart │ ├── profiler.dart │ ├── verbose.dart │ └── yaml.dart │ ├── pub_operations.dart │ ├── scan_for_packages.dart │ └── utils │ ├── borg_exception.dart │ ├── correct_package_dependency.dart │ ├── git.dart │ ├── platform_version.dart │ ├── print_colors.dart │ ├── print_dependency_usage_report.dart │ ├── render_package_name.dart │ ├── run_system_command.dart │ └── with_temp_location.dart ├── borg.yaml ├── codecov.yml ├── dev ├── dart_quality_checks.sh ├── format_dart_code.sh ├── generate_code.sh └── ignored_lint_warning_for_generated_code.txt ├── lib ├── borg.dart └── src │ ├── boot_mode.dart │ ├── compute_package_dependency_correction.dart │ ├── configuration │ ├── configuration.dart │ ├── configuration.g.dart │ ├── factory.dart │ └── options │ │ ├── dart_sdk.dart │ │ ├── exclude.dart │ │ ├── flutter_sdk.dart │ │ └── paths.dart │ ├── context │ ├── borg_boot_context.dart │ ├── borg_context.dart │ └── borg_context_factory.dart │ ├── copy_with_package_dependencies_from_reference.dart │ ├── dart_package │ ├── dart_package.dart │ └── discover_dart_packages.dart │ ├── find_circular_dependencies.dart │ ├── find_inconsistent_dependencies.dart │ ├── find_inconsistent_dependency_specs.dart │ ├── generic_dependency_usage_report.dart │ ├── get_all_external_package_dependencies.dart │ ├── get_all_external_package_dependency_specs.dart │ ├── impact │ └── impact_based_on_pubspec_yaml.dart │ ├── package_dependency_to_version.dart │ └── utils │ ├── file_finder.dart │ ├── file_io.dart │ └── lazy_data.dart ├── pubspec.yaml └── test ├── compute_package_dependency_correction_test.dart ├── configuration ├── create_initial_configuration_file_test.dart ├── creation_with_configuration_file_test.dart └── creation_without_configuration_file_test.dart ├── context └── borg_boot_context_serialization_test.dart ├── copy_with_package_dependencies_from_reference_test.dart ├── dart_package └── dart_package_test.dart ├── dart_package_utils.dart ├── dependency_test_dataset.dart ├── determine_most_used_version_test.dart ├── find_circular_dependencies_test.dart ├── find_inconsistent_dependencies_test.dart ├── find_inconsistent_dependency_specs_test.dart ├── get_all_external_package_dependencies_test.dart ├── get_all_external_package_dependency_specs_test.dart ├── impact └── impact_based_on_pubspec_yaml_test.dart ├── integration_test_sets ├── package_with_inconsistent_dep_spec │ └── pubspec.yaml ├── package_with_pubspec_lock │ └── pubspec.yaml └── package_without_pubspec_lock │ └── pubspec.yaml ├── set_package_dependencies_to_version_test.dart └── utils └── lazy_data_test.dart /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/main.dart -------------------------------------------------------------------------------- /bin/src/assert_pubspec_yaml_consistency.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/assert_pubspec_yaml_consistency.dart -------------------------------------------------------------------------------- /bin/src/commands/boot_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/boot_command.dart -------------------------------------------------------------------------------- /bin/src/commands/boot_command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/boot_command_runner.dart -------------------------------------------------------------------------------- /bin/src/commands/deps_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/deps_command.dart -------------------------------------------------------------------------------- /bin/src/commands/deps_command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/deps_command_runner.dart -------------------------------------------------------------------------------- /bin/src/commands/evolve_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/evolve_command.dart -------------------------------------------------------------------------------- /bin/src/commands/evolve_command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/evolve_command_runner.dart -------------------------------------------------------------------------------- /bin/src/commands/init_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/init_command.dart -------------------------------------------------------------------------------- /bin/src/commands/probe_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/probe_command.dart -------------------------------------------------------------------------------- /bin/src/commands/probe_command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/commands/probe_command_runner.dart -------------------------------------------------------------------------------- /bin/src/options/boot_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/boot_mode.dart -------------------------------------------------------------------------------- /bin/src/options/correct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/correct.dart -------------------------------------------------------------------------------- /bin/src/options/dry_run.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/dry_run.dart -------------------------------------------------------------------------------- /bin/src/options/lock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/lock.dart -------------------------------------------------------------------------------- /bin/src/options/pick_most_used.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/pick_most_used.dart -------------------------------------------------------------------------------- /bin/src/options/profiler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/profiler.dart -------------------------------------------------------------------------------- /bin/src/options/verbose.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/verbose.dart -------------------------------------------------------------------------------- /bin/src/options/yaml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/options/yaml.dart -------------------------------------------------------------------------------- /bin/src/pub_operations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/pub_operations.dart -------------------------------------------------------------------------------- /bin/src/scan_for_packages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/scan_for_packages.dart -------------------------------------------------------------------------------- /bin/src/utils/borg_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/borg_exception.dart -------------------------------------------------------------------------------- /bin/src/utils/correct_package_dependency.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/correct_package_dependency.dart -------------------------------------------------------------------------------- /bin/src/utils/git.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/git.dart -------------------------------------------------------------------------------- /bin/src/utils/platform_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/platform_version.dart -------------------------------------------------------------------------------- /bin/src/utils/print_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/print_colors.dart -------------------------------------------------------------------------------- /bin/src/utils/print_dependency_usage_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/print_dependency_usage_report.dart -------------------------------------------------------------------------------- /bin/src/utils/render_package_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/render_package_name.dart -------------------------------------------------------------------------------- /bin/src/utils/run_system_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/run_system_command.dart -------------------------------------------------------------------------------- /bin/src/utils/with_temp_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/bin/src/utils/with_temp_location.dart -------------------------------------------------------------------------------- /borg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/borg.yaml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/codecov.yml -------------------------------------------------------------------------------- /dev/dart_quality_checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/dev/dart_quality_checks.sh -------------------------------------------------------------------------------- /dev/format_dart_code.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -ex 2 | 3 | dart format --fix "$@" . 4 | -------------------------------------------------------------------------------- /dev/generate_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/dev/generate_code.sh -------------------------------------------------------------------------------- /dev/ignored_lint_warning_for_generated_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/dev/ignored_lint_warning_for_generated_code.txt -------------------------------------------------------------------------------- /lib/borg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/borg.dart -------------------------------------------------------------------------------- /lib/src/boot_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/boot_mode.dart -------------------------------------------------------------------------------- /lib/src/compute_package_dependency_correction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/compute_package_dependency_correction.dart -------------------------------------------------------------------------------- /lib/src/configuration/configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/configuration.dart -------------------------------------------------------------------------------- /lib/src/configuration/configuration.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/configuration.g.dart -------------------------------------------------------------------------------- /lib/src/configuration/factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/factory.dart -------------------------------------------------------------------------------- /lib/src/configuration/options/dart_sdk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/options/dart_sdk.dart -------------------------------------------------------------------------------- /lib/src/configuration/options/exclude.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/options/exclude.dart -------------------------------------------------------------------------------- /lib/src/configuration/options/flutter_sdk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/options/flutter_sdk.dart -------------------------------------------------------------------------------- /lib/src/configuration/options/paths.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/configuration/options/paths.dart -------------------------------------------------------------------------------- /lib/src/context/borg_boot_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/context/borg_boot_context.dart -------------------------------------------------------------------------------- /lib/src/context/borg_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/context/borg_context.dart -------------------------------------------------------------------------------- /lib/src/context/borg_context_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/context/borg_context_factory.dart -------------------------------------------------------------------------------- /lib/src/copy_with_package_dependencies_from_reference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/copy_with_package_dependencies_from_reference.dart -------------------------------------------------------------------------------- /lib/src/dart_package/dart_package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/dart_package/dart_package.dart -------------------------------------------------------------------------------- /lib/src/dart_package/discover_dart_packages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/dart_package/discover_dart_packages.dart -------------------------------------------------------------------------------- /lib/src/find_circular_dependencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/find_circular_dependencies.dart -------------------------------------------------------------------------------- /lib/src/find_inconsistent_dependencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/find_inconsistent_dependencies.dart -------------------------------------------------------------------------------- /lib/src/find_inconsistent_dependency_specs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/find_inconsistent_dependency_specs.dart -------------------------------------------------------------------------------- /lib/src/generic_dependency_usage_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/generic_dependency_usage_report.dart -------------------------------------------------------------------------------- /lib/src/get_all_external_package_dependencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/get_all_external_package_dependencies.dart -------------------------------------------------------------------------------- /lib/src/get_all_external_package_dependency_specs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/get_all_external_package_dependency_specs.dart -------------------------------------------------------------------------------- /lib/src/impact/impact_based_on_pubspec_yaml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/impact/impact_based_on_pubspec_yaml.dart -------------------------------------------------------------------------------- /lib/src/package_dependency_to_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/package_dependency_to_version.dart -------------------------------------------------------------------------------- /lib/src/utils/file_finder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/utils/file_finder.dart -------------------------------------------------------------------------------- /lib/src/utils/file_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/utils/file_io.dart -------------------------------------------------------------------------------- /lib/src/utils/lazy_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/lib/src/utils/lazy_data.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/compute_package_dependency_correction_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/compute_package_dependency_correction_test.dart -------------------------------------------------------------------------------- /test/configuration/create_initial_configuration_file_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/configuration/create_initial_configuration_file_test.dart -------------------------------------------------------------------------------- /test/configuration/creation_with_configuration_file_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/configuration/creation_with_configuration_file_test.dart -------------------------------------------------------------------------------- /test/configuration/creation_without_configuration_file_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/configuration/creation_without_configuration_file_test.dart -------------------------------------------------------------------------------- /test/context/borg_boot_context_serialization_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/context/borg_boot_context_serialization_test.dart -------------------------------------------------------------------------------- /test/copy_with_package_dependencies_from_reference_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/copy_with_package_dependencies_from_reference_test.dart -------------------------------------------------------------------------------- /test/dart_package/dart_package_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/dart_package/dart_package_test.dart -------------------------------------------------------------------------------- /test/dart_package_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/dart_package_utils.dart -------------------------------------------------------------------------------- /test/dependency_test_dataset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/dependency_test_dataset.dart -------------------------------------------------------------------------------- /test/determine_most_used_version_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/determine_most_used_version_test.dart -------------------------------------------------------------------------------- /test/find_circular_dependencies_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/find_circular_dependencies_test.dart -------------------------------------------------------------------------------- /test/find_inconsistent_dependencies_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/find_inconsistent_dependencies_test.dart -------------------------------------------------------------------------------- /test/find_inconsistent_dependency_specs_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/find_inconsistent_dependency_specs_test.dart -------------------------------------------------------------------------------- /test/get_all_external_package_dependencies_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/get_all_external_package_dependencies_test.dart -------------------------------------------------------------------------------- /test/get_all_external_package_dependency_specs_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/get_all_external_package_dependency_specs_test.dart -------------------------------------------------------------------------------- /test/impact/impact_based_on_pubspec_yaml_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/impact/impact_based_on_pubspec_yaml_test.dart -------------------------------------------------------------------------------- /test/integration_test_sets/package_with_inconsistent_dep_spec/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/integration_test_sets/package_with_inconsistent_dep_spec/pubspec.yaml -------------------------------------------------------------------------------- /test/integration_test_sets/package_with_pubspec_lock/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/integration_test_sets/package_with_pubspec_lock/pubspec.yaml -------------------------------------------------------------------------------- /test/integration_test_sets/package_without_pubspec_lock/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/integration_test_sets/package_without_pubspec_lock/pubspec.yaml -------------------------------------------------------------------------------- /test/set_package_dependencies_to_version_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/set_package_dependencies_to_version_test.dart -------------------------------------------------------------------------------- /test/utils/lazy_data_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexei-sintotski/dart-borg/HEAD/test/utils/lazy_data_test.dart --------------------------------------------------------------------------------