From cc1272e99294322c4a060e7f4a5af3cc1ed6e039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maido=20K=C3=A4=C3=A4ra?= Date: Thu, 16 Aug 2018 10:06:26 +0300 Subject: [PATCH 1/2] Added environment constraint --- pubspec.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pubspec.yaml b/pubspec.yaml index b8d9a7c..ba928c2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -8,3 +8,5 @@ dependencies: yaml: '>=0.4.2' dev_dependencies: browser: any +environment: + sdk: '>=1.19.0 <2.1.0' From b88bcfba5bd00b1d60160e945d9ef0eb884e7efa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maido=20K=C3=A4=C3=A4ra?= Date: Thu, 16 Aug 2018 10:21:39 +0300 Subject: [PATCH 2/2] Moved unittest to dev dependencies --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ba928c2..0fe9ecc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,9 +4,9 @@ author: Chris Buckett description: A set of libraries designed to provide configuration to Dart applications. Using dependency injection, the same library API can load config information from the filesystem and httprequest, formatted as JSON or YAML. Customization with additional providers is also possible by implementing two simple interfaces. homepage: https://github.com/chrisbu/dart_config dependencies: - unittest: any yaml: '>=0.4.2' dev_dependencies: + unittest: any browser: any environment: sdk: '>=1.19.0 <2.1.0'