-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustfile
More file actions
74 lines (53 loc) · 1.12 KB
/
Copy pathJustfile
File metadata and controls
74 lines (53 loc) · 1.12 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
default:
@just --list
doctor:
{{flutter}} doctor -v
get:
{{flutter}} pub get
upgrade:
{{flutter}} pub upgrade
outdated:
{{flutter}} pub outdated
analyze:
{{flutter}} analyze
format:
{{dart}} format lib
format-check:
{{dart}} format --set-exit-if-changed lib
test:
{{flutter}} test
check: get format-check analyze
generate:
{{dart}} run build_runner build --delete-conflicting-outputs
translations:
{{dart}} run slang
clean:
{{flutter}} clean
{{flutter}} pub get
run device="":
if [[ -n "{{device}}" ]]; then \
{{flutter}} run -d "{{device}}"; \
else \
{{flutter}} run; \
fi
build-ios:
{{flutter}} build ios
ios-pod-install:
cd ios && {{pod}} install
ios-pod-update:
cd ios && {{pod}} install --repo-update
ios-build-generic:
xcodebuild \
-workspace ios/Runner.xcworkspace \
-scheme Runner \
-configuration Debug \
-sdk iphoneos \
-destination 'generic/platform=iOS' \
build \
CODE_SIGNING_ALLOWED=NO \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY=
splash:
dart run flutter_native_splash:create
icon:
dart run flutter_launcher_icons