From 6e5da4daec352d3f2e8d823024a764f9bda666e3 Mon Sep 17 00:00:00 2001 From: "Abdhilahi R. Wabwire" <124460109+AbdhilahiRWabwire@users.noreply.github.com> Date: Wed, 9 Oct 2024 05:48:19 -0600 Subject: [PATCH] Update Dependencies --- lib/index.html | 13 +++++++++ lib/main.dart | 8 ++++-- pubspec.lock | 74 ++++++++++++++++++++++---------------------------- pubspec.yaml | 11 ++------ 4 files changed, 54 insertions(+), 52 deletions(-) diff --git a/lib/index.html b/lib/index.html index e69de29..a6d9546 100644 --- a/lib/index.html +++ b/lib/index.html @@ -0,0 +1,13 @@ + + + + + + + Data Interchange + + + + + + \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart index de5e02f..292f214 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,5 +1,7 @@ -import 'dart:async'; +import 'package:web/web.dart'; -Future main(List arguments) async { - print('Data Interchange\n'); +Element div = document.querySelector('div')!; + +void main() async { + div.text = 'Data Interchange'; } diff --git a/pubspec.lock b/pubspec.lock index 12d63aa..119c8fe 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -22,14 +22,6 @@ packages: url: "https://pub.dev" source: hosted version: "6.8.0" - ansicolor: - dependency: "direct main" - description: - name: ansicolor - sha256: "50e982d500bc863e1d703448afdbf9e5a72eb48840a4f766fa361ffd6877055f" - url: "https://pub.dev" - source: hosted - version: "2.0.3" archive: dependency: transitive description: @@ -39,7 +31,7 @@ packages: source: hosted version: "3.6.1" args: - dependency: "direct main" + dependency: transitive description: name: args sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a" @@ -114,10 +106,10 @@ packages: dependency: "direct dev" description: name: build_runner - sha256: dd09dd4e2b078992f42aac7f1a622f01882a8492fef08486b27ddde929c19f04 + sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d" url: "https://pub.dev" source: hosted - version: "2.4.12" + version: "2.4.13" build_runner_core: dependency: transitive description: @@ -166,22 +158,6 @@ packages: url: "https://pub.dev" source: hosted version: "2.0.3" - cli_config: - dependency: "direct main" - description: - name: cli_config - sha256: ac20a183a07002b700f0c25e61b7ee46b23c309d76ab7b7640a028f18e4d99ec - url: "https://pub.dev" - source: hosted - version: "0.2.0" - cli_util: - dependency: "direct main" - description: - name: cli_util - sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 - url: "https://pub.dev" - source: hosted - version: "0.4.1" clock: dependency: transitive description: @@ -247,13 +223,13 @@ packages: source: hosted version: "2.3.7" file: - dependency: "direct main" + dependency: transitive description: name: file - sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 url: "https://pub.dev" source: hosted - version: "7.0.0" + version: "7.0.1" fixnum: dependency: transitive description: @@ -286,6 +262,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.3.2" + html: + dependency: "direct main" + description: + name: html + sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" + url: "https://pub.dev" + source: hosted + version: "0.15.4" http: dependency: "direct main" description: @@ -334,14 +318,6 @@ packages: url: "https://pub.dev" source: hosted version: "0.19.0" - intl_translation: - dependency: "direct main" - description: - name: intl_translation - sha256: b858d88b569f3c529e992ba7186aa495f3e862897df60edb932563c619943610 - url: "https://pub.dev" - source: hosted - version: "0.20.0" io: dependency: "direct main" description: @@ -434,10 +410,10 @@ packages: dependency: transitive description: name: mime - sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a" + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" url: "https://pub.dev" source: hosted - version: "1.0.6" + version: "2.0.0" node_preamble: dependency: transitive description: @@ -630,8 +606,16 @@ packages: url: "https://pub.dev" source: hosted version: "1.3.0" + sync_http: + dependency: transitive + description: + name: sync_http + sha256: "7f0cd72eca000d2e026bcd6f990b81d0ca06022ef4e32fb257b30d3d1014a961" + url: "https://pub.dev" + source: hosted + version: "0.3.1" term_glyph: - dependency: "direct main" + dependency: transitive description: name: term_glyph sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 @@ -718,6 +702,14 @@ packages: url: "https://pub.dev" source: hosted version: "3.0.1" + webdriver: + dependency: "direct main" + description: + name: webdriver + sha256: "3d773670966f02a646319410766d3b5e1037efb7f07cc68f844d5e06cd4d61c8" + url: "https://pub.dev" + source: hosted + version: "3.0.4" webkit_inspection_protocol: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 6c0e838..a50d51f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,21 +1,16 @@ dependencies: - ansicolor: 2.0.3 - args: 2.5.0 async: 2.11.0 characters: 1.3.0 - cli_config: 0.2.0 - cli_util: 0.4.1 collection: 1.19.0 convert: 3.1.1 crypto: 3.0.5 csslib: 1.0.0 - file: 7.0.0 glob: 2.1.2 + html: 0.15.4 http: 1.2.2 http2: 2.3.0 http_multi_server: 3.2.1 intl: 0.19.0 - intl_translation: 0.20.0 io: 1.0.4 json_rpc_2: 3.0.2 json_serializable: 6.8.0 @@ -29,15 +24,15 @@ dependencies: shelf_static: 1.1.3 shelf_web_socket: 2.0.0 stack_trace: 1.12.0 - term_glyph: 1.2.1 web: 1.1.0 + webdriver: 3.0.4 web_socket_channel: 3.0.1 description: "Data Interchange Format Implementations" dev_dependencies: - build_runner: 2.4.12 + build_runner: 2.4.13 build_web_compilers: 4.0.11 lints: 5.0.0 shelf_test_handler: 2.0.2