Committed by
GitHub
Upgrade archive, fix wasm import (#1790)
* Upgrade archive, fix wasm import * Resolve requested changes
Showing
2 changed files
with
2 additions
and
2 deletions
@@ -18,7 +18,7 @@ environment: | @@ -18,7 +18,7 @@ environment: | ||
18 | sdk: ">=2.19.0 <4.0.0" | 18 | sdk: ">=2.19.0 <4.0.0" |
19 | 19 | ||
20 | dependencies: | 20 | dependencies: |
21 | - archive: ^3.4.0 | 21 | + archive: ">=3.4.0 <4.1.0" |
22 | barcode: ">=2.2.3 <3.0.0" | 22 | barcode: ">=2.2.3 <3.0.0" |
23 | bidi: ^2.0.10 | 23 | bidi: ^2.0.10 |
24 | crypto: ^3.0.0 | 24 | crypto: ^3.0.0 |
@@ -30,7 +30,7 @@ import 'package:pdf/pdf.dart'; | @@ -30,7 +30,7 @@ import 'package:pdf/pdf.dart'; | ||
30 | 30 | ||
31 | import 'callback.dart'; | 31 | import 'callback.dart'; |
32 | import 'interface.dart'; | 32 | import 'interface.dart'; |
33 | -import 'method_channel_ffi.dart' if (dart.library.js) 'method_channel_js.dart'; | 33 | +import 'method_channel_js.dart' if (dart.library.io) 'method_channel_ffi.dart'; |
34 | import 'output_type.dart'; | 34 | import 'output_type.dart'; |
35 | import 'print_job.dart'; | 35 | import 'print_job.dart'; |
36 | import 'printer.dart'; | 36 | import 'printer.dart'; |
-
Please register or login to post a comment