PMU-PIbd-31-Potapov-N-S/Makefile

25 lines
417 B
Makefile
Raw Normal View History

gen:
flutter pub run build_runner build --delete-conflicting-outputs
2024-12-11 04:57:28 +04:00
hello:
echo "Hi!"; \
echo "I'm makefile"; \
echo "^_^"
2024-12-11 04:57:28 +04:00
icon:
flutter pub run flutter_launcher_icons:main
2024-12-11 04:57:28 +04:00
init_res:
dart pub global activate flutter_asset_generator
2024-12-11 04:57:28 +04:00
format:
dart format . --line-length 100
2024-12-11 04:57:28 +04:00
res:
fgen --output lib/components/resources.g.dart --no-watch --no-preview; \
make format
loc:
flutter gen-l10n; \
make format