Skip to content

Commit 4ce0651

Browse files
authored
update readme - add how to build with melos (#582)
1 parent d7e6ba5 commit 4ce0651

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,3 +345,33 @@ Workmanager().cancelByUniqueName("<MyTask>");
345345
```dart
346346
Workmanager().cancelAll();
347347
```
348+
349+
350+
# Building project
351+
352+
Project was migrated to [Melos](https://pub.dev/packages/melos) so build steps has changed.
353+
354+
1. Install melos
355+
356+
```
357+
dart pub global activate melos
358+
```
359+
360+
2. In project root bootstrap
361+
362+
```
363+
melos bootstrap
364+
```
365+
366+
3. Get packages
367+
368+
```
369+
melos run get
370+
```
371+
372+
Now you should be able to run example project
373+
374+
```
375+
cd example
376+
flutter run
377+
```

0 commit comments

Comments
 (0)