mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
bda6840523
* deleted generated directory from file system * Removed generated language files from source control Files are now generated when building the app or by launching "Generate Language Files" added /lib/generated/ to git .ignore added a task to generate language files call task from build script * added pub get to workflow
7 lines
239 B
Bash
7 lines
239 B
Bash
#!/bin/sh
|
|
#!/usr/bin/env fish
|
|
echo 'Generating language files'
|
|
cd app_flowy
|
|
flutter pub run easy_localization:generate -S assets/translations/
|
|
flutter pub run easy_localization:generate -f keys -o locale_keys.g.dart -S assets/translations
|