-
Notifications
You must be signed in to change notification settings - Fork 31
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
Bump PureScript to 0.14.3 #280
Changes from 52 commits
9b59c3e
eeac3d8
d7776f1
d7976c1
bb7e834
7b0616d
9ef4b66
8a22974
67e6763
3f788c4
fa25af3
f9fbe52
b74b54c
124b100
5d981c8
2a16ed3
a438b8d
c34e7a4
93cab2d
b1ae181
d8c2fa8
2c150c9
d68ccea
218b5fe
d020f61
a52a771
a15a6b4
ea7d999
7f3268b
f54e9f4
43d5b35
9cae209
a7fe4e2
8264db8
5640ab7
530eef0
ef13c37
19bcf13
a0e5624
65c2a1f
fff69ab
7c62aab
dac10bc
639be5f
4600ae8
d13e6a9
93753b6
18fe681
0668a5d
b5bba08
6944b21
501f219
0f5231e
4595647
5653c67
a1f97fe
4848fb1
c1f12c8
1616b74
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ name = "RoutingHashHalogenClassic" | ||
, dependencies = | ||
[ "console", "effect", "generics-rep", "halogen", "psci-support", "routing" ] | ||
[ "console", "effect", "halogen", "psci-support", "routing" ] | ||
, packages = ../../packages.dhall | ||
, sources = [ "recipes/RoutingHashHalogenClassic/src/**/*.purs" ] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ name = "RoutingPushHalogenClassic" | ||
, dependencies = | ||
[ "console", "effect", "generics-rep", "halogen", "psci-support", "routing" ] | ||
[ "console", "effect", "halogen", "psci-support", "routing" ] | ||
, packages = ../../packages.dhall | ||
, sources = [ "recipes/RoutingPushHalogenClassic/src/**/*.purs" ] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"license": "MIT", | ||
"devDependencies": { | ||
"parcel-bundler": "^1.12.5", | ||
"purescript": "^0.13.8", | ||
"spago": "^0.16.0" | ||
"purescript": "^0.14.3", | ||
"spago": "^0.19.1" | ||
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. We'll want to bump this to the latest spago version, but that should be done in a separate PR. |
||
}, | ||
"dependencies": { | ||
"ace-builds": "^1.4.11", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
let upstream = | ||
https://github.com/purescript/package-sets/releases/download/psc-0.13.8-20200831/packages.dhall sha256:cdb3529cac2cd8dd780f07c80fd907d5faceae7decfcaa11a12037df68812c83 | ||
https://github.com/purescript/package-sets/releases/download/psc-0.14.2-20210713/packages.dhall sha256:654c3148cb995f642c73b4508d987d9896e2ad3ea1d325a1e826c034c0d3cd7b | ||
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. I realized halfway through that this is actually slightly ahead of TPS package set (https://github.com/purescript/trypurescript/blob/ee9ca742c6c34901303043f64815c9794d23cd4c/staging/packages.dhall#L2) I don't know that that would lead to any incompatibility 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. It shouldn't, but thanks for notifying us of 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. Also, a 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. |
||
|
||
let overrides = {=} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
{ name = "AffjaxPostNode" | ||
, dependencies = | ||
[ "affjax", "argonaut", "console", "effect", "node-fs-aff", "psci-support" ] | ||
[ "aff" | ||
, "affjax" | ||
, "argonaut" | ||
, "console" | ||
, "effect" | ||
, "either" | ||
, "maybe" | ||
, "node-fs-aff" | ||
, "prelude" | ||
, "psci-support" | ||
] | ||
, packages = ../../packages.dhall | ||
, sources = [ "recipes/AffjaxPostNode/src/**/*.purs" ] | ||
} |
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.
I ran a
sed
command to removeHH.HTML
but some recipes remained broken after that and other minimal attempts at fixing, which explains why some of these
HalogenHooks
recipes have theHH.HTML
removed but still ended up in thebroken
directory. I thinkallmost of the other recipes that ended up inbroken
were left unchanged.