Skip to content

Commit

Permalink
updates melos and does version patching for flutter_mobx (#943)
Browse files Browse the repository at this point in the history
* upgrading to new melos, version update patching

* upgrading to new melos, version update patching
  • Loading branch information
pavanpodila authored Oct 17, 2023
1 parent 29e119d commit 4539e69
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 71 deletions.
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ node_modules
*.out
local.properties
.vscode/settings.json
local.properties
Generated.xcconfig

coverage/
Expand All @@ -36,7 +35,6 @@ coverage_badge.svg

# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
Expand All @@ -48,19 +46,14 @@ coverage_badge.svg
# IntelliJ related
*.ipr
*.iws
.idea/
*.iml

# Visual Studio Code related
.vscode/

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.packages
.pub-cache/
.pub/
build/

# Android related
**/android/**/gradle-wrapper.jar
Expand Down
4 changes: 4 additions & 0 deletions flutter_mobx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.0+1

- Patching to update the version in the library file

## 2.1.0

- feat: add `MultiReactionBuilder` widget by [@amondnet](https://github.com/amondnet)
Expand Down
23 changes: 0 additions & 23 deletions flutter_mobx/flutter_mobx.iml

This file was deleted.

2 changes: 1 addition & 1 deletion flutter_mobx/lib/version.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated via set_version.dart. !!!DO NOT MODIFY BY HAND!!!

/// The current version as per `pubspec.yaml`.
const version = '2.0.6+5';
const version = '2.1.0+1';
2 changes: 1 addition & 1 deletion flutter_mobx/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_mobx
description:
Flutter integration for MobX. It provides a set of Observer widgets that automatically rebuild
when the tracked observables change.
version: 2.1.0
version: 2.1.0+1

homepage: https://github.com/mobxjs/mobx.dart
issue_tracker: https://github.com/mobxjs/mobx.dart/issues
Expand Down
4 changes: 2 additions & 2 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ scripts:
get:
exec: dart pub get
set_version:
exec: $MELOS_ROOT_PATH/tool/expose_version.dart
exec: dart run $MELOS_ROOT_PATH/tool/expose_version.dart
generate:
run: cd mobx_examples && dart run build_runner watch --delete-conflicting-outputs

command:
bootstrap:
usePubspecOverrides: true
usePubspecOverrides: true
19 changes: 0 additions & 19 deletions mobx/mobx.iml

This file was deleted.

17 changes: 0 additions & 17 deletions mobx_codegen/mobx_codegen.iml

This file was deleted.

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

environment:
sdk: '>=2.18.0 <4.0.0'

dev_dependencies:
melos: ^3.1.1

0 comments on commit 4539e69

Please sign in to comment.