Hey there! Great library.
Can you define multiple commands to be run within the same keyword?
scripts:
run:
"fvm flutter pub clean"
"fvm flutter pub get"
"fvm flutter pub run build_runner watch --delete-conflicting-outputs"
Because otherwise we have to do the following which is really not ideal:
scripts:
run: "fvm flutter pub clean && fvm flutter pub get && fvm flutter pub run build_runner watch --delete-conflicting-outputs"
Hey there! Great library.
Can you define multiple commands to be run within the same keyword?
Because otherwise we have to do the following which is really not ideal: