This repository was archived by the owner on Nov 26, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11language : node_js
22dist : trusty
33sudo : required
4- node_js : 6
4+ node_js : stable
55env :
66 - PATH=$HOME/purescript:$PATH
77install :
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "clean" : " rimraf output && rimraf .pulp-cache" ,
5- "build" : " pulp build --censor-lib --strict"
5+ "build" : " pulp build -- -- censor-lib --strict"
66 },
77 "devDependencies" : {
8- "pulp" : " ^9 .0.1 " ,
9- "purescript-psa" : " ^0.3.9 " ,
10- "rimraf" : " ^2.5.0 "
8+ "pulp" : " ^10 .0.4 " ,
9+ "purescript-psa" : " ^0.5.0-rc.1 " ,
10+ "rimraf" : " ^2.6.1 "
1111 }
1212}
Original file line number Diff line number Diff line change 4848-- | ```
4949module Type.Proxy where
5050
51- -- | Value proxy for kind `* ` types.
51+ -- | Value proxy for kind `Type ` types.
5252data Proxy a = Proxy
5353
54- -- | Value proxy for kind `* -> * ` types.
55- data Proxy2 (a :: * -> * ) = Proxy2
54+ -- | Value proxy for kind `Type -> Type ` types.
55+ data Proxy2 (a :: Type -> Type ) = Proxy2
5656
57- -- | Value proxy for kind `* -> * -> * ` types.
58- data Proxy3 (a :: * -> * -> * ) = Proxy3
57+ -- | Value proxy for kind `Type -> Type -> Type ` types.
58+ data Proxy3 (a :: Type -> Type -> Type ) = Proxy3
You can’t perform that action at this time.
0 commit comments