From 975b5d3fb33d64b5e19a4c5529a43a23855600d3 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Mon, 7 Dec 2020 16:03:15 +0100 Subject: [PATCH] Make build dependencies not fixed to a specific version --- pubspec.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index cf94c11..30450ec 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -10,6 +10,6 @@ environment: dependencies: dev_dependencies: - build_runner: ^1.10.1 - build_web_compilers: ^2.9.0 - pedantic: ^1.9.0 + build_runner: ">=1.10.1 <2.0.0" + build_web_compilers: ">=2.9.0 <3.0.0" + pedantic: ">=1.9.0 <2.0.0"