Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't prelude be 5.0.1?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What I did was check the .spago directory contents after doing a spago build:
image

},
"devDependencies": {
"purescript-assert": "^5.0.0",
"purescript-console": "^5.0.0"
"purescript-assert": "^5.0.0"
}
}
8 changes: 7 additions & 1 deletion spago.dhall
Original file line number Diff line number Diff line change
@@ -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" ]
}