Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blendthink/function_macros
https://github.com/blendthink/function_macros
Last synced: 20 days 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 (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T02:14:36.000Z (5 months ago)
- Last Synced: 2024-12-06T14:09:17.801Z (27 days 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
[![melos](https://img.shields.io/badge/maintained%20with-melos-f700ff.svg?style=flat-square)](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
```