From 743d65bbfa4eba1695ccf6e68f3c0182fc446e3b Mon Sep 17 00:00:00 2001 From: nathan wilson Date: Tue, 27 Jul 2021 21:42:48 -0400 Subject: [PATCH] update spago.dhall to add missing direct dependencies --- bower.json | 6 +++--- spago.dhall | 8 +++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/bower.json b/bower.json index 4602c9b..00e99a3 100644 --- a/bower.json +++ b/bower.json @@ -20,10 +20,10 @@ "dependencies": { "purescript-effect": "^3.0.0", "purescript-functions": "^5.0.0", - "purescript-maybe": "^5.0.0" + "purescript-maybe": "^5.0.0", + "purescript-prelude": "^5.0.0" }, "devDependencies": { - "purescript-assert": "^5.0.0", - "purescript-console": "^5.0.0" + "purescript-assert": "^5.0.0" } } diff --git a/spago.dhall b/spago.dhall index dd8219d..2f813bb 100644 --- a/spago.dhall +++ b/spago.dhall @@ -1,6 +1,12 @@ { name = "nullable" , dependencies = - [ "assert", "console", "effect", "functions", "maybe", "psci-support" ] + [ "assert" + , "effect" + , "functions" + , "maybe" + , "prelude" + , "psci-support" + ] , packages = ./packages.dhall , sources = [ "src/**/*.purs", "test/**/*.purs" ] }