From 457fa290c37d360a62370d958db7bf1aa653e502 Mon Sep 17 00:00:00 2001 From: John Martel Date: Sat, 12 Oct 2024 16:23:58 -0400 Subject: [PATCH] fix: define web dependency properly This commit fixes the following error when fetching dependencies: ``` Invalid version constraint: Expected version number after ">=" in ">=^0.5.1 <2.0.0", got "^0.5.1 <2.0.0". ``` --- packages/location_web/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/location_web/pubspec.yaml b/packages/location_web/pubspec.yaml index 2bb23938..79ca3e85 100644 --- a/packages/location_web/pubspec.yaml +++ b/packages/location_web/pubspec.yaml @@ -17,7 +17,7 @@ dependencies: http_parser: ^4.0.2 js: ^0.6.3 location_platform_interface: ^5.0.0 - web: ">=^0.5.1 <2.0.0" + web: ">=0.5.1 <2.0.0" dev_dependencies: flutter_test: