nekoton_repository

Last updated:

0 purchases

nekoton_repository Image
nekoton_repository Images
Add to Cart

Description:

nekoton repository

Nekoton Repository #



Nekoton repository package
Installation ๐Ÿ’ป #
โ— In order to start using Nekoton Repository you must have the Flutter SDK installed on your machine.
Add nekoton_repository to your pubspec.yaml:
dependencies:
nekoton_repository:
copied to clipboard
Basic usage ๐Ÿ›  #
Setup DI:
@InjectableInit(
externalPackageModulesBefore: [
ExternalModule(NekotonRepositoryPackageModule),
],
)
void configureDependencies() => getIt.init();
copied to clipboard
Init:
Future<void> configureNekoton() async {
final nekotonRepository = inject<NekotonRepository>();

await nekotonRepository.setupNekotonAndStorage(
storage: inject<NekotonStorageService>(),
);
}
copied to clipboard
Melos magic ๐Ÿช„ #
Using melos makes it very easy to work with the project, so enjoy.
You can run any job interactively run running melos run and selecting needed case or directly (e.g. melos run test).
Bootstrap ๐Ÿ #
Melos takes care about dependencies of all packages, including managing of local-generated library version. So, just run:
melos bs
copied to clipboard
Codegen ๐Ÿฆพ #
This thing will run all code generators for all packages:
$ melos run codegen
copied to clipboard
Clean up ๐Ÿงน #
Just run commands below to clean all, including build directories and flutter projects.
melos clean
copied to clipboard
Tests โœ”๏ธ #
You can run all tests at one by running this command.
melos run test
copied to clipboard
Code ๐Ÿ“Š #
You can run code analysis:
melos run analyze
copied to clipboard
Code format ๐Ÿ—ƒ๏ธ #
melos run check-format will check, melos run format will fix dart code formatting.
melos run check-format
melos run format
copied to clipboard
Prepare to commit ๐Ÿค๐Ÿป #
melos run check-all will ckeck, analyze and run all tests.
melos run check-all
copied to clipboard
Conventional Commits โค๏ธ #
This magic will update version and build our library automatically using commit messages and tags. Conventional Commits is a lightweight convention on top of commit messages.
Version ๐Ÿท๏ธ #
Package version control is done by melos. It runs by gh action 'Create version PR' melos version -a --yes.
Continuous Integration ๐Ÿค– #
Nekoton Repository comes with a built-in GitHub Actions workflow powered by Very Good Workflows but you can also add your preferred CI/CD solution.
Out of the box, on each pull request and push, the CI formats, lints, and tests the code. This ensures the code remains consistent and behaves correctly as you add functionality or make changes. The project uses Very Good Analysis for a strict set of analysis options used by our team. Code coverage is enforced using the Very Good Workflows.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.