A project designed to help manage all df packages from one location.
brew install gh
gh auth login
git init
git add .
git commit -m "Initial commit"
gh repo create df_generate_d --public
git remote add origin https://github.com/dev-cetera/YOUR_PROJECT_NAME.git
git push -u origin main
- Make your changes.
- Run
dart analyze
to check for errors. - Run
dart fix --apply
to apply fixes. - Run
dart format .
to format the code. - Update the version number in
pubspec.yaml
. - Update the version number in
CHANGELOG.md
. - Run
dart pub publish --dry-run
to check for errors. - Run
dart pub publish
to publish the package.
feat
: New feature or enhancementfix
: Bug fix or issue resolutionchore
: Routine tasks or maintenancerefactor
: Code improvements (no functionality change)docs
: Documentation updatesstyle
: Code style or formatting changestest
: Tests additions or modificationsbuild
: Build system or external dependencies changesperf
: Performance improvementsci
: Continuous integration configuration changesrevert
: Revert a previous commitsecurity
: Security-related changes or fixesrelease
: Marks a release or version update