@@ -2,8 +2,10 @@ name: FlutterFire
2
2
repository : https://github.com/firebase/flutterfire
3
3
4
4
packages :
5
- - packages/**
6
- - ' tests/*'
5
+ - packages/*
6
+ - packages/*/*
7
+ - packages/*/*/*
8
+ - tests
7
9
8
10
command :
9
11
version :
@@ -16,7 +18,7 @@ command:
16
18
17
19
changelogs :
18
20
- path : firebase_ui_changelog.md
19
- packageFilters :
21
+ packageFilters :
20
22
scope : firebase_ui_*
21
23
description : |
22
24
All notable changes for firebase_ui packages
@@ -26,6 +28,7 @@ command:
26
28
# https://github.com/dart-lang/pub/issues/3404). Disabling this feature
27
29
# makes the CI much more stable.
28
30
runPubGetInParallel : false
31
+ usePubspecOverrides : true
29
32
30
33
scripts :
31
34
lint:all :
@@ -64,23 +67,19 @@ scripts:
64
67
run : |
65
68
melos run build:example_ios_pub --no-select && \
66
69
melos run build:example_android_pub --no-select && \
67
- melos run build:example_macos --no-select && \
68
- melos bootstrap
70
+ melos run build:example_macos --no-select
69
71
description : Build all example apps.
70
72
71
73
build:example_android :
72
74
run : |
73
75
melos exec -c 6 --fail-fast -- \
74
- "flutter build apk --no-pub "
76
+ "flutter build apk"
75
77
description : Build a specific example app for Android.
76
78
select-package :
77
79
dir-exists :
78
80
- android
79
81
scope : ' *example*'
80
82
81
- # melos bootstrap does not generate all files generated by a build that runs
82
- # `pub get`, and `flutter drive` does not either, so it is still necessary to
83
- # build sometimes without the `--no-pub` switch. Careful: `melos bootstrap` after.
84
83
build:example_android_pub :
85
84
run : |
86
85
melos exec -c 6 --fail-fast -- \
@@ -94,16 +93,13 @@ scripts:
94
93
build:example_ios :
95
94
run : |
96
95
melos exec -c 6 --fail-fast -- \
97
- "flutter build ios --no-codesign --no-pub "
96
+ "flutter build ios --no-codesign"
98
97
description : Build a specific example app for iOS.
99
98
select-package :
100
99
dir-exists :
101
100
- ios
102
101
scope : ' *example*'
103
102
104
- # melos bootstrap does not generate all files generated by a build that runs
105
- # `pub get`, and `flutter drive` does not either, so it is still necessary to
106
- # build sometimes without the `--no-pub` switch. Careful: `melos bootstrap` after.
107
103
build:example_ios_pub :
108
104
run : |
109
105
melos exec -c 6 --fail-fast -- \
@@ -117,7 +113,7 @@ scripts:
117
113
build:example_macos :
118
114
run : |
119
115
melos exec -c 6 --fail-fast -- \
120
- "flutter build macos --no-pub "
116
+ "flutter build macos"
121
117
description : |
122
118
Build a specific example app for macOS.
123
119
select-package :
@@ -136,7 +132,7 @@ scripts:
136
132
test :
137
133
run : |
138
134
melos exec -c 6 --fail-fast -- \
139
- "flutter test --no-pub "
135
+ "flutter test"
140
136
description : Run `flutter test` for a specific package.
141
137
select-package :
142
138
dir-exists :
@@ -149,7 +145,7 @@ scripts:
149
145
test:web :
150
146
run : |
151
147
melos exec -c 1 --fail-fast -- \
152
- "flutter test --no-pub -- platform=chrome"
148
+ "flutter test --platform=chrome"
153
149
description : Run `flutter test --platform=chrome` for a specific '*web' package.
154
150
select-package :
155
151
dir-exists :
@@ -159,7 +155,7 @@ scripts:
159
155
test:e2e :
160
156
run : |
161
157
melos exec -c 1 --fail-fast -- \
162
- "flutter test integration_test/e2e_test.dart --no-pub "
158
+ "flutter test integration_test/e2e_test.dart"
163
159
description : |
164
160
Run all e2e tests.
165
161
select-package :
@@ -170,7 +166,7 @@ scripts:
170
166
test:e2e:web :
171
167
run : |
172
168
melos exec -c 1 --fail-fast -- \
173
- "flutter drive --no-pub -- target=./integration_test/e2e_test.dart --driver=./test_driver/integration_test.dart -d chrome"
169
+ "flutter drive --target=./integration_test/e2e_test.dart --driver=./test_driver/integration_test.dart -d chrome"
174
170
description : |
175
171
Run all e2e tests on web platform. Please ensure you have "chromedriver" installed and running.
176
172
select-package :
@@ -292,6 +288,8 @@ scripts:
292
288
--ignore "**/FlutterMultiDexApplication.java" \
293
289
--ignore "**/GeneratedPluginRegistrant.swift" \
294
290
--ignore "**/Pods/**" \
291
+ --ignore "**/flutter/generated_plugin_registrant.h" \
292
+ --ignore "**/flutter/generated_plugin_registrant.cc" \
295
293
.
296
294
description : Add a license header to all necessary files.
297
295
@@ -325,5 +323,7 @@ scripts:
325
323
--ignore "**/FlutterMultiDexApplication.java" \
326
324
--ignore "**/GeneratedPluginRegistrant.swift" \
327
325
--ignore "**/Pods/**" \
326
+ --ignore "**/flutter/generated_plugin_registrant.h" \
327
+ --ignore "**/flutter/generated_plugin_registrant.cc" \
328
328
.
329
329
description : Add a license header to all necessary files.
0 commit comments