├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin └── pubver.dart ├── example └── readme.md ├── lib ├── pubspec_version.dart └── src │ ├── cli │ ├── build_app.dart │ ├── command_container.dart │ └── pub_spec_command.dart │ ├── console.dart │ ├── next_build.dart │ ├── pubspec_version_app.dart │ └── version_transform.dart ├── pubspec.yaml └── test ├── functional_test.dart ├── pubspec_sample.yaml └── unit └── version_transform_test.dart /.gitignore: -------------------------------------------------------------------------------- 1 | .packages 2 | pubspec.lock 3 | .dart_tool 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:pedantic/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /bin/pubver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/bin/pubver.dart -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/example/readme.md -------------------------------------------------------------------------------- /lib/pubspec_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/pubspec_version.dart -------------------------------------------------------------------------------- /lib/src/cli/build_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/cli/build_app.dart -------------------------------------------------------------------------------- /lib/src/cli/command_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/cli/command_container.dart -------------------------------------------------------------------------------- /lib/src/cli/pub_spec_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/cli/pub_spec_command.dart -------------------------------------------------------------------------------- /lib/src/console.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/console.dart -------------------------------------------------------------------------------- /lib/src/next_build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/next_build.dart -------------------------------------------------------------------------------- /lib/src/pubspec_version_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/pubspec_version_app.dart -------------------------------------------------------------------------------- /lib/src/version_transform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/lib/src/version_transform.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/functional_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/test/functional_test.dart -------------------------------------------------------------------------------- /test/pubspec_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/test/pubspec_sample.yaml -------------------------------------------------------------------------------- /test/unit/version_transform_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3ath/pubspec-version/HEAD/test/unit/version_transform_test.dart --------------------------------------------------------------------------------