Skip to content

Update to Purescript 0.15.15. #159

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3,794 changes: 1,996 additions & 1,798 deletions tut01/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tut01/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"all": "npm run clean && npm run install && npm run build && npm run exec"
},
"devDependencies": {
"purescript": "^0.14.5",
"spago": "^0.20.4"
"purescript": "^0.15.15",
"spago": "^0.21.0"
}
}
3 changes: 2 additions & 1 deletion tut01/packages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ let additions =
-------------------------------
-}
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.14.3-20210811/packages.dhall sha256:a2de7ef2f2e753733eddfa90573a82da0c7c61d46fa87d015b7f15ef8a6e97d5
https://github.com/purescript/package-sets/releases/download/psc-0.15.15-20250222/packages.dhall
sha256:ab9ac17057b63b0c2a6a0f3c748fb2d7bb6577feeb3886c3062b8e719e67cc87

let overrides = {=}

Expand Down
1 change: 0 additions & 1 deletion tut01/spago.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ You can edit this file as you like.
, "integers"
, "maybe"
, "prelude"
, "psci-support"
, "strings"
]
, packages = ./packages.dhall
Expand Down
3 changes: 2 additions & 1 deletion tut02/packages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ let additions =
-------------------------------
-}
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.14.3-20210811/packages.dhall sha256:a2de7ef2f2e753733eddfa90573a82da0c7c61d46fa87d015b7f15ef8a6e97d5
https://github.com/purescript/package-sets/releases/download/psc-0.15.15-20250222/packages.dhall
sha256:ab9ac17057b63b0c2a6a0f3c748fb2d7bb6577feeb3886c3062b8e719e67cc87

let overrides = {=}

Expand Down
1 change: 0 additions & 1 deletion tut02/spago.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ You can edit this file as you like.
, "control"
, "effect"
, "prelude"
, "psci-support"
, "strings"
]
, packages = ./packages.dhall
Expand Down
2 changes: 1 addition & 1 deletion tut02/src/Main.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"use strict";

exports.unsafeParseFloat = parseFloat;
export unsafeParseFloat = parseFloat;
Loading