This project uses melos to manage the monorepo. To get started, clone the repository and run the following commands:
- Install melos. Make sure you have
.pub-cache/binin your path.
dart pub global activate melos- Setup the project with melos.
melos bootstrapThis will create dependency overrides for all the packages in the monorepo.
- Run
pub getwith melos.
melos run depsNow you can run the example app. See melos.yaml for more commands.
melos run test- Install genhtml:
brew install lcov- Run tests and generate report
melos run cov- Open
coverage/index.htmlin browser to view the report.
You can run melos run open_cov on macOS to open the report in browser.