-
Notifications
You must be signed in to change notification settings - Fork 50
Update trypurescript deps to match purescript repo versions #223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
5bf614d
6579055
51de215
53b6018
d7d4393
1a7cf3c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,14 @@ | ||
resolver: lts-13.26 | ||
resolver: lts-17.6 | ||
flags: | ||
aeson-pretty: | ||
lib-only: true | ||
these: | ||
assoc: false | ||
quickcheck: false | ||
packages: | ||
- '.' | ||
extra-deps: | ||
# purescript 0.14.0-rc5 | ||
- github: purescript/purescript | ||
commit: 7ecc42669c69682996f2196ba2eef6c4ca827348 | ||
subdirs: | ||
- . | ||
- lib/purescript-ast | ||
- lib/purescript-cst | ||
- happy-1.19.9 | ||
- purescript-0.14.1 | ||
- purescript-ast-0.1.1.0 | ||
- purescript-cst-0.1.1.0 | ||
- happy-1.20.0 | ||
- language-javascript-0.7.0.0 | ||
- network-3.0.1.1 | ||
- these-1.0.1 | ||
- semialign-1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,21 +15,21 @@ data-dir: "" | |
executable trypurescript | ||
build-depends: base ==4.*, | ||
aeson -any, | ||
bytestring >=0.10.0.2 && <0.11, | ||
bytestring >=0.10.12.0 && <0.11, | ||
data-default -any, | ||
directory -any, | ||
filepath -any, | ||
Glob -any, | ||
scotty -any, | ||
scotty ==0.12, | ||
purescript, | ||
purescript-cst, | ||
containers -any, | ||
http-types >= 0.8.5, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @hdgarrood Before I merge this, should And is it correct that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thinking about this a little more I think we might as well use It’s more important to provide accurate version bounds when you’re making a library which other people are depending on - this part of the cabal file does the same job as the dependencies part of a bower.json or package.json file in a JS library. But that’s not what we are doing here so it doesn’t really matter. |
||
transformers ==0.5.*, | ||
mtl ==2.2.2, | ||
transformers >=0.5.6.2 && <0.6, | ||
mtl >=2.2.2 && <2.3, | ||
text -any, | ||
time -any, | ||
warp -any | ||
warp ==3.3.14 | ||
hs-source-dirs: server | ||
main-is: Main.hs | ||
buildable: True | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to keep this in? It lets us avoid depending on
quickcheck
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like it's an invalid flag. If I run
stack build
with that included, I get this error:Note: PureScript's
stack.yaml
file doesn't have that flag either.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh right ok sorry, I didn’t realise it had been removed.