Skip to content
This repository was archived by the owner on Nov 26, 2020. It is now read-only.

Update for PureScript 0.11 #3

Merged
merged 1 commit into from
Mar 26, 2017
Merged
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
dist: trusty
sudo: required
node_js: 6
node_js: stable
env:
- PATH=$HOME/purescript:$PATH
install:
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build --censor-lib --strict"
"build": "pulp build -- --censor-lib --strict"
},
"devDependencies": {
"pulp": "^9.0.1",
"purescript-psa": "^0.3.9",
"rimraf": "^2.5.0"
"pulp": "^10.0.4",
"purescript-psa": "^0.5.0-rc.1",
"rimraf": "^2.6.1"
}
}
10 changes: 5 additions & 5 deletions src/Type/Proxy.purs
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
-- | ```
module Type.Proxy where

-- | Value proxy for kind `*` types.
-- | Value proxy for kind `Type` types.
data Proxy a = Proxy

-- | Value proxy for kind `* -> *` types.
data Proxy2 (a :: * -> *) = Proxy2
-- | Value proxy for kind `Type -> Type` types.
data Proxy2 (a :: Type -> Type) = Proxy2

-- | Value proxy for kind `* -> * -> *` types.
data Proxy3 (a :: * -> * -> *) = Proxy3
-- | Value proxy for kind `Type -> Type -> Type` types.
data Proxy3 (a :: Type -> Type -> Type) = Proxy3