Skip to content

Commit 7568134

Browse files
committed
Update for PureScript 0.11
1 parent 41d6fc7 commit 7568134

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

bower.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
"output"
1313
],
1414
"dependencies": {
15-
"purescript-console": "^2.0.0",
16-
"purescript-exceptions": "^2.0.0",
17-
"purescript-maps": "^2.0.0",
18-
"purescript-maybe": "^2.0.0",
19-
"purescript-node-fs": "^3.0.0",
20-
"purescript-node-streams": "^2.0.0",
21-
"purescript-posix-types": "^2.0.0",
22-
"purescript-unsafe-coerce": "^2.0.0",
23-
"purescript-partial": "^1.1.2"
15+
"purescript-console": "^3.0.0",
16+
"purescript-exceptions": "^3.0.0",
17+
"purescript-maps": "^3.0.0",
18+
"purescript-maybe": "^3.0.0",
19+
"purescript-node-fs": "^4.0.0",
20+
"purescript-node-streams": "^3.0.0",
21+
"purescript-posix-types": "^3.0.0",
22+
"purescript-unsafe-coerce": "^3.0.0",
23+
"purescript-partial": "^1.2.0"
2424
}
2525
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "jshint src && jscs src && pulp build --censor-lib --strict",
5+
"build": "jshint src && jscs src && pulp build -- --censor-lib --strict",
66
"test": "pulp test"
77
},
88
"devDependencies": {
99
"jscs": "^3.0.7",
1010
"jshint": "^2.9.4",
11-
"pulp": "^9.0.1",
12-
"purescript-psa": "^0.3.9",
13-
"purescript": "^0.10.1",
11+
"pulp": "^11.0.0",
12+
"purescript-psa": "^0.5.0",
13+
"purescript": "^0.11.1",
1414
"rimraf": "^2.5.4"
1515
}
1616
}

src/Node/Process.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Node.Process
2525

2626
import Prelude
2727

28-
import Control.Monad.Eff (Eff)
28+
import Control.Monad.Eff (Eff, kind Effect)
2929
import Control.Monad.Eff.Console (CONSOLE)
3030
import Control.Monad.Eff.Exception (EXCEPTION)
3131

@@ -45,7 +45,7 @@ import Partial.Unsafe (unsafePartial)
4545
import Unsafe.Coerce (unsafeCoerce)
4646

4747
-- | An effect tracking interaction with the global `process` object.
48-
foreign import data PROCESS :: !
48+
foreign import data PROCESS :: Effect
4949

5050
-- YOLO
5151
foreign import process :: forall props. { | props }

0 commit comments

Comments
 (0)