https://github.com/blendthink/function_macros
https://github.com/blendthink/function_macros
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blendthink/function_macros
- Owner: blendthink
- License: bsd-3-clause
- Created: 2024-07-28T08:22:52.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T02:14:36.000Z (11 months ago)
- Last Synced: 2025-03-27T14:12:21.042Z (3 months ago)
- Language: Dart
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# function macros
[](https://github.com/invertase/melos)
## Get Started
```shell
brew install leoafarias/fvm/fvm
fvm use --force# Add "FVM global" comment to .zshrc if it does not exist
if ! grep -q "FVM global" ~/.zshrc; then
echo '# FVM global' >> ~/.zshrc
echo 'export PATH="$PATH":"$HOME/fvm/default/bin"' >> ~/.zshrc
source ~/.zshrc
fibrew install jq
FLUTTER_VERSION=$(cat .fvmrc | jq ".flutter" -r) && \
fvm global $FLUTTER_VERSIONbrew install yq
MELOS_VERSION=$(cat pubspec.lock | yq ".packages.melos.version" -r) && \
fvm dart pub global activate melos $MELOS_VERSION --overwritemelos bs
```