Skip to content

altive/altfire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Development

Release procedures for a altfire package.

  1. Create a branch for release.
  2. Run the melos version command.
  3. melos bs to update the version of the dependent packages.
  4. Commit the diff and create a pull request.
  5. Merge the pull request after review.
  6. Run the melos publish command on the main branch.
# Narrow down the target package as needed.
melos version --scope=altfire_tracker

Add new example package

flutter create -e \
--org jp.co.altive \
--project-name ${PACKAGE_NAME}_example \
packages/${PACKAGE_NAME}/example

Add dependencies to example package

flutter pub add firebase_core \
'${PACKAGE_NAME}:{"path":"../"}' \
dev:altive_lints 

Configure FlutterFire

cd packages/${PACKAGE_NAME}/example
flutterfire configure

https://console.firebase.google.com/project/flutterfire-adapter

Update analysis_options.yaml

include: package:altive_lints/altive_lints.yaml
analyzer:
  exclude:
    - "lib/firebase_options.dart"