- Added support to mange overridden dependencies in pubspec_overrides.yaml file.
- Added support to avoid running pub get after managing the dependencies, can be called by
pubm -f <flavor> -b no-pub-get
ordart run pub:manage -f <flavor> -b no-pub-get
, -b is abbreviation for--build-args
- Added support to both
flutter pub get
anddart pub get
commands (If the pubspec.yaml file contains flutter sdk dependency then it will run flutter pub get else dart pub get).
- Fixed the issue of of removing and managing dependencies when clubbed together.
- Added support to remove values from pubspec.yaml file.
- Deep check for other dependencies to avoid changes to pubspec.yaml file if the dependencies are same.
- Added 'pubm' executable, can be activated by
dart pub global activate pubm
.
- Added support for Addition/Others params in pubspec.yaml file. (like msix_config, flutter_launcher_icons)
- Added warning message if the name in pubspec.yaml file got changed with the one provided in
pubspec_<flavor>.yaml
file. - Unit test cases for the added features.
- Fixed the issue when name was not provided in
pubspec_<flavor>.yaml
and the name in pubspec.yaml file was changed to empty string. - Fixed the issue with the git dependencies without ref
- Updated the README.md file to include the new features and also the usage of the package.
- New feature to automatically sort dependencies alphabetically and also as per the type of the dependency.
- Feature to automatically add the new dependency to the correct section of the pubspec.yaml file.
- Feature to update dependencies to the desired version (as mentioned in the respective
pubspec_<flavor>.yaml
file). - Feature to change the name, version, description and also assets and fonts in pubspec.yaml file as per the
pubspec_<flavor>.yaml
.