-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslidy.yaml
More file actions
30 lines (29 loc) · 853 Bytes
/
slidy.yaml
File metadata and controls
30 lines (29 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
slidy: "1"
variables:
customMessage: "Complete" # Gets ${Local.var.customMessage}
scripts:
clean:
name: "Clean"
description: "Clean project and re-fetch packages"
steps:
- run: fvm flutter clean
- run: fvm flutter pub get
builder:
name: "Builder"
description: "Run build_runner"
steps:
- run: fvm flutter pub run build_runner build --delete-conflicting-outputs
generate:
name: "Generate"
steps:
- run: fvm flutter pub run build_runner build --delete-conflicting-outputs
- run: fvm flutter gen-l10n
translate:
name: "Translate"
description: "Generate translations strings from arb files"
run: fvm flutter gen-l10n
watch:
name: "Watch"
description: "Run build_runner watch"
steps:
- run: dart pub run build_runner watch --delete-conflicting-outputs