Skip to content

Commit a162d75

Browse files
authored
flutter update-packages --force-upgrade (#128908)
- Bumps `vm_service` from `11.6.0` to `11.7.1` - Bumps `web` from `0.1.3-beta` to `0.1.4-beta` and adds it everywhere. - Moves `js` from `dependencies` to `dev_dependencies`
1 parent b0188cd commit a162d75

File tree

69 files changed

+245
-226
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+245
-226
lines changed

dev/automated_tests/pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ dependencies:
6060
test_core: 0.5.3 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6161
typed_data: 1.3.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6262
vector_math: 2.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
63-
vm_service: 11.6.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
63+
vm_service: 11.7.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6464
watcher: 1.1.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
65+
web: 0.1.4-beta # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6566
web_socket_channel: 2.4.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6667
webkit_inspection_protocol: 1.2.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6768
yaml: 3.1.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -71,4 +72,4 @@ flutter:
7172
assets:
7273
- icon/test.png
7374

74-
# PUBSPEC CHECKSUM: 0df7
75+
# PUBSPEC CHECKSUM: 8050

dev/benchmarks/complex_layout/pubspec.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ dependencies:
2121
characters: 1.3.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2222
collection: 1.17.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2323
file: 6.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
24-
js: 0.6.7 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2524
matcher: 0.12.16 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2625
material_color_utilities: 0.5.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2726
meta: 1.9.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -34,7 +33,8 @@ dependencies:
3433
term_glyph: 1.2.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3534
test_api: 0.6.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3635
vector_math: 2.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
37-
vm_service: 11.6.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
36+
vm_service: 11.7.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
37+
web: 0.1.4-beta # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3838
webdriver: 3.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3939

4040
dev_dependencies:
@@ -57,6 +57,7 @@ dev_dependencies:
5757
http_multi_server: 3.2.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
5858
http_parser: 4.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
5959
io: 1.0.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
60+
js: 0.6.7 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6061
logging: 1.2.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6162
mime: 1.0.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6263
node_preamble: 2.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -82,4 +83,4 @@ flutter:
8283
- packages/flutter_gallery_assets/people/square/ali.png
8384
- packages/flutter_gallery_assets/places/india_chettinad_silk_maker.png
8485

85-
# PUBSPEC CHECKSUM: 43d0
86+
# PUBSPEC CHECKSUM: 1c29

dev/benchmarks/macrobenchmarks/lib/src/web/bench_platform_view_infinite_scroll.dart

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// found in the LICENSE file.
44

55
import 'dart:async';
6-
import 'dart:js_interop';
76
import 'dart:ui_web' as ui_web;
87

98
import 'package:flutter/material.dart';
@@ -16,16 +15,16 @@ const String benchmarkViewType = 'benchmark_element';
1615
void _registerFactory() {
1716
ui_web.platformViewRegistry.registerViewFactory(benchmarkViewType, (int viewId) {
1817
final web.HTMLElement htmlElement =
19-
web.document.createElement('div'.toJS) as web.HTMLDivElement;
20-
htmlElement.id = '${benchmarkViewType}_$viewId'.toJS;
21-
htmlElement.innerText = 'Google'.toJS;
18+
web.document.createElement('div') as web.HTMLDivElement;
19+
htmlElement.id = '${benchmarkViewType}_$viewId';
20+
htmlElement.innerText = 'Google';
2221
htmlElement.style
23-
..setProperty('width'.toJS, '100%'.toJS)
24-
..setProperty('height'.toJS, '100%'.toJS)
25-
..setProperty('color'.toJS, 'black'.toJS)
26-
..setProperty('backgroundColor'.toJS, 'rgba(0, 255, 0, .5)'.toJS)
27-
..setProperty('textAlign'.toJS, 'center'.toJS)
28-
..setProperty('border'.toJS, '1px solid black'.toJS);
22+
..setProperty('width', '100%')
23+
..setProperty('height', '100%')
24+
..setProperty('color', 'black')
25+
..setProperty('backgroundColor', 'rgba(0, 255, 0, .5)')
26+
..setProperty('textAlign', 'center')
27+
..setProperty('border', '1px solid black');
2928
return htmlElement;
3029
});
3130
}

dev/benchmarks/macrobenchmarks/lib/src/web/recorder.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ void startMeasureFrame(Profile profile) {
12581258

12591259
if (!profile.isWarmingUp) {
12601260
// Tell the browser to mark the beginning of the frame.
1261-
web.window.performance.mark('measured_frame_start#$_currentFrameNumber'.toJS);
1261+
web.window.performance.mark('measured_frame_start#$_currentFrameNumber');
12621262
_isMeasuringFrame = true;
12631263
}
12641264
}
@@ -1280,11 +1280,11 @@ void endMeasureFrame() {
12801280

12811281
if (_isMeasuringFrame) {
12821282
// Tell the browser to mark the end of the frame, and measure the duration.
1283-
web.window.performance.mark('measured_frame_end#$_currentFrameNumber'.toJS);
1283+
web.window.performance.mark('measured_frame_end#$_currentFrameNumber');
12841284
web.window.performance.measure(
1285-
'measured_frame'.toJS,
1285+
'measured_frame',
12861286
'measured_frame_start#$_currentFrameNumber'.toJS,
1287-
'measured_frame_end#$_currentFrameNumber'.toJS,
1287+
'measured_frame_end#$_currentFrameNumber',
12881288
);
12891289

12901290
// Increment the current frame number.

dev/benchmarks/macrobenchmarks/lib/web_benchmarks.dart

Lines changed: 35 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ Future<void> _runBenchmark(String benchmarkName) async {
154154

155155
extension WebHTMLElementExtension on web.HTMLElement {
156156
void appendHtml(String html) {
157-
final web.HTMLDivElement div = web.document.createElement('div'.toJS) as
157+
final web.HTMLDivElement div = web.document.createElement('div') as
158158
web.HTMLDivElement;
159-
div.innerHTML = html.toJS;
159+
div.innerHTML = html;
160160
final web.DocumentFragment fragment = web.document.createDocumentFragment();
161161
fragment.append(div);
162162
web.document.adoptNode(fragment);
@@ -183,10 +183,10 @@ void _fallbackToManual(String error) {
183183
''');
184184

185185
for (final String benchmarkName in benchmarks.keys) {
186-
final web.Element button = web.document.querySelector('#$benchmarkName'.toJS)!;
187-
button.addEventListener('click'.toJS, (JSObject _) {
186+
final web.Element button = web.document.querySelector('#$benchmarkName')!;
187+
button.addEventListener('click', (JSObject _) {
188188
final web.Element? manualPanel =
189-
web.document.querySelector('#manual-panel'.toJS);
189+
web.document.querySelector('#manual-panel');
190190
manualPanel?.remove();
191191
_runBenchmark(benchmarkName);
192192
}.toJS);
@@ -196,7 +196,7 @@ void _fallbackToManual(String error) {
196196
/// Visualizes results on the Web page for manual inspection.
197197
void _printResultsToScreen(Profile profile) {
198198
web.document.body!.remove();
199-
web.document.body = web.document.createElement('body'.toJS) as web.HTMLBodyElement;
199+
web.document.body = web.document.createElement('body') as web.HTMLBodyElement;
200200
web.document.body!.appendHtml('<h2>${profile.name}</h2>');
201201

202202
profile.scoreData.forEach((String scoreKey, Timeseries timeseries) {
@@ -210,15 +210,15 @@ void _printResultsToScreen(Profile profile) {
210210
class TimeseriesVisualization {
211211
TimeseriesVisualization(this._timeseries) {
212212
_stats = _timeseries.computeStats();
213-
_canvas = web.document.createElement('canvas'.toJS) as web.HTMLCanvasElement;
214-
_screenWidth = web.window.screen.width.toDart.toInt();
215-
_canvas.width = _screenWidth.toJS;
216-
_canvas.height = (_kCanvasHeight * web.window.devicePixelRatio.toDart).round().toJS;
213+
_canvas = web.document.createElement('canvas') as web.HTMLCanvasElement;
214+
_screenWidth = web.window.screen.width;
215+
_canvas.width = _screenWidth;
216+
_canvas.height = (_kCanvasHeight * web.window.devicePixelRatio).round();
217217
_canvas.style
218-
..setProperty('width'.toJS, '100%'.toJS)
219-
..setProperty('height'.toJS, '${_kCanvasHeight}px'.toJS)
220-
..setProperty('outline'.toJS, '1px solid green'.toJS);
221-
_ctx = _canvas.getContext('2d'.toJS)! as web.CanvasRenderingContext2D;
218+
..setProperty('width', '100%')
219+
..setProperty('height', '${_kCanvasHeight}px')
220+
..setProperty('outline', '1px solid green');
221+
_ctx = _canvas.getContext('2d')! as web.CanvasRenderingContext2D;
222222

223223
// The amount of vertical space available on the chart. Because some
224224
// outliers can be huge they can dwarf all the useful values. So we
@@ -250,15 +250,15 @@ class TimeseriesVisualization {
250250
/// A utility for drawing lines.
251251
void drawLine(num x1, num y1, num x2, num y2) {
252252
_ctx.beginPath();
253-
_ctx.moveTo(x1.toJS, y1.toJS);
254-
_ctx.lineTo(x2.toJS, y2.toJS);
253+
_ctx.moveTo(x1.toDouble(), y1.toDouble());
254+
_ctx.lineTo(x2.toDouble(), y2.toDouble());
255255
_ctx.stroke();
256256
}
257257

258258
/// Renders the timeseries into a `<canvas>` and returns the canvas element.
259259
web.HTMLCanvasElement render() {
260-
_ctx.translate(0.toJS, (_kCanvasHeight * web.window.devicePixelRatio.toDart).toJS);
261-
_ctx.scale(1.toJS, (-web.window.devicePixelRatio.toDart).toJS);
260+
_ctx.translate(0, _kCanvasHeight * web.window.devicePixelRatio);
261+
_ctx.scale(1, -web.window.devicePixelRatio);
262262

263263
final double barWidth = _screenWidth / _stats.samples.length;
264264
double xOffset = 0;
@@ -268,8 +268,7 @@ class TimeseriesVisualization {
268268
if (sample.isWarmUpValue) {
269269
// Put gray background behind warm-up samples.
270270
_ctx.fillStyle = 'rgba(200,200,200,1)'.toJS;
271-
_ctx.fillRect(xOffset.toJS, 0.toJS, barWidth.toJS,
272-
_normalized(_maxValueChartRange).toJS);
271+
_ctx.fillRect(xOffset, 0, barWidth, _normalized(_maxValueChartRange));
273272
}
274273

275274
if (sample.magnitude > _maxValueChartRange) {
@@ -283,13 +282,12 @@ class TimeseriesVisualization {
283282
_ctx.fillStyle = 'rgba(50,50,255,0.6)'.toJS;
284283
}
285284

286-
_ctx.fillRect(xOffset.toJS, 0.toJS, (barWidth - 1).toJS,
287-
_normalized(sample.magnitude).toJS);
285+
_ctx.fillRect(xOffset, 0, barWidth - 1, _normalized(sample.magnitude));
288286
xOffset += barWidth;
289287
}
290288

291289
// Draw a horizontal solid line corresponding to the average.
292-
_ctx.lineWidth = 1.toJS;
290+
_ctx.lineWidth = 1;
293291
drawLine(0, _normalized(_stats.average), _screenWidth, _normalized(_stats.average));
294292

295293
// Draw a horizontal dashed line corresponding to the outlier cut off.
@@ -299,10 +297,10 @@ class TimeseriesVisualization {
299297
// Draw a light red band that shows the noise (1 stddev in each direction).
300298
_ctx.fillStyle = 'rgba(255,50,50,0.3)'.toJS;
301299
_ctx.fillRect(
302-
0.toJS,
303-
_normalized(_stats.average * (1 - _stats.noise)).toJS,
304-
_screenWidth.toJS,
305-
_normalized(2 * _stats.average * _stats.noise).toJS,
300+
0,
301+
_normalized(_stats.average * (1 - _stats.noise)),
302+
_screenWidth.toDouble(),
303+
_normalized(2 * _stats.average * _stats.noise),
306304
);
307305

308306
return _canvas;
@@ -340,13 +338,13 @@ class LocalBenchmarkServerClient {
340338
// 404 is expected in the following cases:
341339
// - The benchmark is ran using plain `flutter run`, which does not provide "next-benchmark" handler.
342340
// - We ran all benchmarks and the benchmark is telling us there are no more benchmarks to run.
343-
if (request.status.toDart != 200) {
341+
if (request.status != 200) {
344342
isInManualMode = true;
345343
return kManualFallback;
346344
}
347345

348346
isInManualMode = false;
349-
return request.responseText.toDart;
347+
return request.responseText;
350348
}
351349

352350
void _checkNotManualMode() {
@@ -389,7 +387,7 @@ class LocalBenchmarkServerClient {
389387
mimeType: 'application/json',
390388
sendData: json.encode(profile.toJson()),
391389
);
392-
if (request.status.toDart != 200) {
390+
if (request.status != 200) {
393391
throw Exception(
394392
'Failed to report profile data to benchmark server. '
395393
'The server responded with status code ${request.status}.'
@@ -439,31 +437,31 @@ class LocalBenchmarkServerClient {
439437
final web.XMLHttpRequest xhr = web.XMLHttpRequest();
440438

441439
method ??= 'GET';
442-
xhr.open(method.toJS, url.toJS, true.toJS);
440+
xhr.open(method, url, true);
443441

444442
if (withCredentials != null) {
445-
xhr.withCredentials = withCredentials.toJS;
443+
xhr.withCredentials = withCredentials;
446444
}
447445

448446
if (responseType != null) {
449-
xhr.responseType = responseType.toJS;
447+
xhr.responseType = responseType;
450448
}
451449

452450
if (mimeType != null) {
453-
xhr.overrideMimeType(mimeType.toJS);
451+
xhr.overrideMimeType(mimeType);
454452
}
455453

456454
if (requestHeaders != null) {
457455
requestHeaders.forEach((String header, String value) {
458-
xhr.setRequestHeader(header.toJS, value.toJS);
456+
xhr.setRequestHeader(header, value);
459457
});
460458
}
461459

462-
xhr.addEventListener('load'.toJS, (web.ProgressEvent e) {
460+
xhr.addEventListener('load', (web.ProgressEvent e) {
463461
completer.complete(xhr);
464462
}.toJS);
465463

466-
xhr.addEventListener('error'.toJS, (JSObject error) {
464+
xhr.addEventListener('error', (JSObject error) {
467465
return completer.completeError(error);
468466
}.toJS);
469467

dev/benchmarks/macrobenchmarks/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies:
1818
# flutter update-packages --force-upgrade
1919
flutter_gallery_assets: 1.0.2
2020

21-
web: 0.1.3-beta
21+
web: 0.1.4-beta
2222

2323
async: 2.11.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2424
boolean_selector: 2.1.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -27,7 +27,6 @@ dependencies:
2727
collection: 1.17.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2828
fake_async: 1.3.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2929
file: 6.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
30-
js: 0.6.7 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3130
matcher: 0.12.16 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3231
material_color_utilities: 0.5.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
3332
meta: 1.9.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -40,7 +39,7 @@ dependencies:
4039
term_glyph: 1.2.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4140
test_api: 0.6.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4241
vector_math: 2.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
43-
vm_service: 11.6.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
42+
vm_service: 11.7.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4443
webdriver: 3.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4544

4645
dev_dependencies:
@@ -59,6 +58,7 @@ dev_dependencies:
5958
http_multi_server: 3.2.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6059
http_parser: 4.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6160
io: 1.0.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
61+
js: 0.6.7 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6262
logging: 1.2.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6363
mime: 1.0.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6464
node_preamble: 2.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -210,4 +210,4 @@ flutter:
210210
fonts:
211211
- asset: packages/flutter_gallery_assets/fonts/GalleryIcons.ttf
212212

213-
# PUBSPEC CHECKSUM: 9626
213+
# PUBSPEC CHECKSUM: 1c29

dev/benchmarks/microbenchmarks/pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ dependencies:
6161
test_core: 0.5.3 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6262
typed_data: 1.3.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6363
vector_math: 2.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
64-
vm_service: 11.6.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
64+
vm_service: 11.7.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6565
watcher: 1.1.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
66+
web: 0.1.4-beta # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6667
web_socket_channel: 2.4.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6768
webkit_inspection_protocol: 1.2.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
6869
yaml: 3.1.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -136,4 +137,4 @@ flutter:
136137
- packages/flutter_gallery_assets/people/square/stella.png
137138
- packages/flutter_gallery_assets/people/square/trevor.png
138139

139-
# PUBSPEC CHECKSUM: 2948
140+
# PUBSPEC CHECKSUM: 06a0

dev/benchmarks/multiple_flutters/module/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ dependencies:
2121
file: 6.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2222
http: 0.13.6 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2323
http_parser: 4.0.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
24-
js: 0.6.7 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2524
material_color_utilities: 0.5.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2625
meta: 1.9.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
2726
path: 1.8.3 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
@@ -39,6 +38,7 @@ dependencies:
3938
term_glyph: 1.2.1 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4039
typed_data: 1.3.2 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4140
vector_math: 2.1.4 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
41+
web: 0.1.4-beta # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4242
win32: 5.0.3 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4343
xdg_directories: 1.0.0 # THIS LINE IS AUTOGENERATED - TO UPDATE USE "flutter update-packages --force-upgrade"
4444

@@ -50,4 +50,4 @@ flutter:
5050
androidPackage: com.example.multiple_flutters_module
5151
iosBundleIdentifier: com.example.multipleFluttersModule
5252

53-
# PUBSPEC CHECKSUM: 288e
53+
# PUBSPEC CHECKSUM: b7b2

0 commit comments

Comments
 (0)