bull 0.0.5
bull: ^0.0.5 copied to clipboard
A collection of convenient and useful Command-Line interfaces for development.
Bull #
A collection of convenient and useful Command-Line interfaces for development.
Introduction #
There are some commands when developing. This package is a collection of convenient and useful Command-Line interfaces for development.
Installing #
You can install this package by executing the following command.
dart pub add --dev bull
Or, open the pubspec.yaml file and add the bull package to dev_dependencies as follows.
...
dev_dependencies:
bull: [version]
...
Also, you can activate this package by the following command.
dart pub global activate bull
Commands #
The Bull package the following commands.
- pub_version
pub_version #
Thepub_version command updates the version in the pubspec.yaml file.
You can execute this like the followings.
# When you install by `dart pub add --dev bull`
dart run bull:pub_version --version patch
# When you install by `dart pub global activate bull`
dart pub global run bull:pub_version --version patch
This command supports the following options.
--version: You can setmajor,minor,patch,buildand the specific version like2.7.5.
Contributing #
If you want to contribute to this package, please see CONTRIBUTING.