Skip to content

Commit 54ea9fc

Browse files
committed
Update dependencies for v0.13.x
I've updated dependencies by major version only for those that require it to compile against the v0.13.x version of the compiler (I bumped the compiler to the latest at the time of writing - v0.13.6). When running `bower install`, I had to do some interactive module resolutions. I think it makes sense to move to psc-package (whether in this PR or a follow-up) and potentially `spago` in the future.
1 parent 0964663 commit 54ea9fc

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ cd staging/core
6262
psc-package update
6363
6464
# note: globs like **/src/** do not work
65-
stack exec trypurescript 8081 ".psc-package/psc-0.11.6/*/*/src/**/*.purs" "src/*.purs"
65+
stack exec trypurescript 8081 ".psc-package/psc-0.13.6/*/*/src/**/*.purs" "src/*.purs"
6666
# should output that is is compiling the sources (first time)
6767
# then: Setting phasers to stun... (port 8081) (ctrl-c to quit)
6868
```

client/bower.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
],
99
"dependencies": {
1010
"purescript-console": "^4.1.0",
11-
"purescript-foreign-generic": "^7.0.0",
11+
"purescript-foreign-generic": "^10.0.0",
1212
"purescript-jquery": "^5.0.0",
1313
"purescript-js-timers": "^4.0.1",
1414
"purescript-parallel": "^4.0.0",
1515
"purescript-prelude": "^4.1.0",
1616
"purescript-random": "^4.0.0",
17-
"purescript-web-html": "^1.2.0"
17+
"purescript-web-html": "^2.3.0"
1818
},
1919
"devDependencies": {
2020
"ace": "^1.2.8",
@@ -36,7 +36,7 @@
3636
"purescript-exists": "^4.0.0",
3737
"purescript-foldable-traversable": "^4.1.0",
3838
"purescript-foreign": "^5.0.0",
39-
"purescript-foreign-object": "^1.0.0",
39+
"purescript-foreign-object": "^2.0.0",
4040
"purescript-free": "^5.1.0",
4141
"purescript-functions": "^4.0.0",
4242
"purescript-functors": "^3.1.0",
@@ -51,7 +51,7 @@
5151
"purescript-prelude": "^4.1.0",
5252
"purescript-profunctor": "^4.0.0",
5353
"purescript-proxy": "^3.0.0",
54-
"purescript-quickcheck": "^5.0.0",
54+
"purescript-quickcheck": "^6.1.0",
5555
"purescript-random": "^4.0.0",
5656
"purescript-refs": "^4.1.0",
5757
"purescript-semirings": "^5.0.0",
@@ -60,7 +60,7 @@
6060
"purescript-tailrec": "^4.0.0",
6161
"purescript-transformers": "^4.1.0",
6262
"purescript-tuples": "^5.1.0",
63-
"purescript-typelevel-prelude": "^3.0.0",
63+
"purescript-typelevel-prelude": "^5.0.2",
6464
"purescript-unfoldable": "^4.0.0",
6565
"purescript-validation": "^4.0.0"
6666
}

client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"bundle": "pulp build -O --to js/index.js && open index.html"
77
},
88
"devDependencies": {
9-
"pulp": "^11.0.0",
10-
"purescript-psa": "^0.5.0",
11-
"purescript": "^0.11.1",
9+
"pulp": "^13.0.0",
10+
"purescript-psa": "^0.7.3",
11+
"purescript": "^0.13.6",
1212
"rimraf": "^2.5.4"
1313
}
1414
}

client/src/Try/API.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import Effect.Uncurried (EffectFn1, EffectFn3, EffectFn4, mkEffectFn1, runEffect
3333
import Foreign (Foreign, ForeignError)
3434
import Foreign.Class (class Decode, decode)
3535
import Foreign.Generic (defaultOptions, genericDecode)
36-
import Foreign.Generic.Types (Options, SumEncoding(..))
36+
import Foreign.Generic.Class (Options, SumEncoding(..))
3737
import Partial.Unsafe (unsafePartial)
3838
import Try.Types (JS(JS))
3939

staging/core/psc-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "core",
3-
"set": "psc-0.12.2",
3+
"set": "psc-0.13.6-20200127",
44
"source": "https://github.com/purescript/package-sets.git",
55
"depends": [
66
"arrays",

0 commit comments

Comments
 (0)