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 analyzeto check for errors. - Run
dart fix --applyto 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-runto check for errors. - Run
dart pub publishto 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