2022-11-21 21:20:01 -05:00
2022-04-19 17:34:50 +02:00
2022-12-12 15:20:47 -05:00
2022-11-21 20:57:52 -05:00
2022-04-19 17:34:50 +02:00
2023-02-07 14:46:21 +01:00
2022-11-21 20:58:18 -05:00
2022-04-19 17:34:50 +02:00
2023-02-14 11:54:48 +01:00
2023-02-14 11:54:48 +01:00
2023-02-07 14:26:53 +00:00

Wyatt Packages

Style: Wyatt Analysis Maintained with Melos


[Changelog]


About

Here is a set of Flutter plugins that enhance your applications.

Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop using a single codebase. It is used by developers and organizations worldwide and is free and open-source.


Contribution

Clone this repo.

git clone ssh://git@git.wyatt-studio.fr:993/Wyatt-FOSS/wyatt-packages.git

Prerequisite

  1. Flutter. It is a UI toolkit developed by Google for building beautiful and natively compiled applications for mobile, web, and desktop from a single codebase.

  2. Melos. Melos is a tool that helps in managing Dart projects that have multiple packages. It can be installed using the following command:

dart pub global activate melos
  1. Mason. Mason is used for code generation purposes. It can be installed by running the following command:
dart pub global activate mason_cli
  1. Lcov. Lcov is a tool used to generate coverage data. It can be installed on macOS by running the following command:
# on macos
brew install lcov
  • genhtml. Used to convert coverage data into html pages.

After installation of all these packages, the project can be bootstrapped using the command melos bs.

Create a new package

Create a new package in packages/ folder. To create a new package in the packages/ folder, run the following command in the terminal:

mason make wyatt_package --package_name  wyatt_<name> --description A new Wyatt package --flutter_only false

The variable in the above command is important and must be clear and understandable.

After creating the package, bootstrap the project with the melos bs command.

Naming

In the previous instructions <name> variable is important. It have to be clear and intelligible.

  1. You must use underscores in the name.
  2. You must use the wyatt prefix for the package name.
  3. You must name the example with a specific name.

For example, if the name is "CRUD BLOC," the following naming conventions should be used:

  1. name: crud_bloc
  2. package name: wyatt_crud_bloc
  3. example name: crud_bloc_example

Create issues

Create an issue for each specific feature or task you want to work on and label it correctly using the following format:

Type(scope): issue.

For example, on notification bloc package :

  • Feature(notification_bloc): add firebase messaging data source.
  • Test(notification_bloc): add test for pushwoosh datasource.

Branches

The master branch is protected and cannot be pushed to directly. Please create a separate branch for each feature or task, with a name that corresponds to the related issue. The branch name should follow this format:

type(scope):issue

Example : For the issue:

  • Feature(notification_bloc): add firebase messaging data source.

The related branch should be named:

  • notification_bloc/feat/add_firebase_messaging_data_source

Commits

See Conventional Commits for commit guidelines.

tl;dr : type(scope): description #issue. Here allowed values:

  • feat for a new feature for the user, not a new feature for build script. Such commit will trigger a release bumping a MINOR version.
  • fix for a bug fix for the user, not a fix to a build script. Such commit will trigger a release bumping a PATCH version.
  • perf for performance improvements. Such commit will trigger a release bumping a PATCH version.
  • docs for changes to the documentation.
  • style for formatting changes, missing semicolons, etc.
  • refactor for refactoring production code, e.g. renaming a variable.
  • test for adding missing tests, refactoring tests; no production code change.
  • build for updating build configuration, development tools or other changes irrelevant to the user.

Some examples :

  • feat(auth): add AWS support. (#31) = add a feature in authentication_bloc package, linked to the 31st issue.
  • docs: update readme. = update this readme file.
  • fix(crud)!: fix bug in awesome() function. (#32) = fix a bug, ! is important and indicate BREAKING CHANGES linked with the 32nd issue.

When you have completed your development work and are ready to resolve the related issue, you can close it via your commit message by including (close #issue_number). For example:

feat(auth): add AWS support. (close #31)
melos run test:all # this will run all tests in this project
melos run gen-coverage # this will generate coverage report
melos run gen-class-models # this will generate plantuml class diagrams
melos run quality-check # this will run all targets generally expected in CI
melos run publish:validate # this will run a validation before publish packages
melos run publish # this will publish packages

Please note that the issue will only be closed after it has been merged into the master branch. Before closing the issue, it is important to verify that all tests have been run and that coverage has been updated.

Merge your work

When you have completed your work and closed the related issue, it's possible that some changes may have been made to the master branch in the meantime. To maintain a clean Git history, it's recommended to rebase before creating a change request (pull request).

Two situations :

  • You haven't created a branch yet and have made local commits:
git pull --rebase
  • You are already working on a branch:
git rebase -i master

It's recommended to use the --fixup option during the interactive rebase to keep the Git history clean.

Once you have rebased, you can create a pull request, receive the necessary approvals, and then merge your work. And with that, you're done! 🎉

Update version.

When your work has been merged into the master branch, it's time to update the package version. To update only your specific package, use the --scope option. For example, after merging changes into the wyatt_notification_bloc package, you can run the following command:

melos version --scope="*wyatt_notification_bloc*"

This will filter all packages that match the wyatt_notification_bloc pattern and update only that package.

You can then verify that all packages and their tests are working correctly by running:

melos run test:all

Publish your package

If package is ready for procution, publish it runnig :

melos publish --scope"*package*"

Badging

In the package readme.md file, please specify the supported SDK:

SDK: Dart & Flutter

![SDK: Dart & Flutter](https://img.shields.io/badge/SDK-Dart%20%7C%20Flutter-blue?style=flat-square)

or

SDK: Dart

![SDK: Dart](https://img.shields.io/badge/SDK-Dart-blue?style=flat-square)

Usage

You can add any package of the packages/ sub directory in your project.

dependencies:
  wyatt_analysis:
    git:
      url: https://git.wyatt-studio.fr/Wyatt-FOSS/wyatt-packages
      ref: wyatt_analysis-v2.0.0
      path: packages/wyatt_analysis

Here you can change package name and package version.


Simple work flow diagramm

To sum up, here a simple work flow diagramm.

Dev Wokflow

Status

Status: Experimental

This repository is maintained by Wyatt Studio but work is in progress.

Description
Tools and applications developed for Wyatt and Wyatt-Studio.
https://wyatt-studio.fr/
Readme 30 MiB
Languages
Dart 97.5%
Shell 1%
HTML 0.9%
Ruby 0.2%
Swift 0.2%