Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.
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
14 changes: 7 additions & 7 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"package.json"
],
"dependencies": {
"purescript-browserfeatures": "^3.0.0",
"purescript-halogen": "^1.1.0",
"purescript-markdown": "^9.0.0",
"purescript-prelude": "^2.5.0",
"purescript-sets": "^2.0.1",
"purescript-strongcheck": "^2.1.0",
"purescript-validation": "^2.0.0"
"purescript-browserfeatures": "^4.0.0",
"purescript-halogen": "^2.0.0",
"purescript-markdown": "^10.0.0",
"purescript-prelude": "^3.0.0",
"purescript-sets": "^3.0.0",
"purescript-strongcheck": "^3.0.0",
"purescript-validation": "^3.0.0"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"example": "pulp browserify --include example/src --to example/example.js"
},
"devDependencies": {
"pulp": "^10.0.0",
"purescript": "^0.10.5",
"purescript-psa": "^0.4.0",
"pulp": "^11.0.0",
"purescript": "^0.11.4",
"purescript-psa": "^0.5.0",
"rimraf": "^2.5.4"
}
}
2 changes: 1 addition & 1 deletion src/Text/Markdown/SlamDown/Halogen/Component/Query.purs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ instance arbitraryArbStrMap ∷ (SCA.Arbitrary a) ⇒ SCA.Arbitrary (ArbStrMap a

instance coarbitraryArbStrMap ∷ (SCA.Coarbitrary a) ⇒ SCA.Coarbitrary (ArbStrMap a) where
coarbitrary (ArbStrMap a) =
SCA.coarbitrary (SM.toList a)
SCA.coarbitrary (SM.toUnfoldable a ∷ L.List (T.Tuple String a))

instance arbitrarySlamDownQuery ∷ (SCA.Arbitrary v, SCA.Coarbitrary v, SCA.Arbitrary a, Eq v) ⇒ SCA.Arbitrary (SlamDownQuery v a) where
arbitrary = do
Expand Down