Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# CONTRIBUTING

Please submit changes to the main branch, and make sure your code is willing to comply with MIT style.

## About development

The repo is manage by [melos][], so you need to install it first.

```bash
dart pub global activate melos
```

Then you can run `melos bootstrap` to init the repo.

```bash
melos bootstrap
```

And run:

```bash
melos run get
```

to get all dependencies.

[melos]: https://melos.invertase.dev
14 changes: 11 additions & 3 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ packages:
- packages/**
- example

command:
bootstrap:
usePubspecOverrides: true
scripts:
analyze:
exec: dart analyze .
get:
exec: flutter pub get
test:
exec: flutter test
format:
exec: dart format --set-exit-if-changed .

sdkPath: auto
7 changes: 7 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: flutter_ume_kits

environment:
sdk: '>=2.18.0 <4.0.0'

dev_dependencies:
melos: ^3.0.1