Skip to content

Commit

Permalink
update readme - add how to build with melos (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
charafau authored Dec 18, 2024
1 parent d7e6ba5 commit 4ce0651
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,3 +345,33 @@ Workmanager().cancelByUniqueName("<MyTask>");
```dart
Workmanager().cancelAll();
```


# Building project

Project was migrated to [Melos](https://pub.dev/packages/melos) so build steps has changed.

1. Install melos

```
dart pub global activate melos
```

2. In project root bootstrap

```
melos bootstrap
```

3. Get packages

```
melos run get
```

Now you should be able to run example project

```
cd example
flutter run
```

0 comments on commit 4ce0651

Please sign in to comment.