File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ module Node.Process
2525
2626import Prelude
2727
28- import Control.Monad.Eff (Eff )
28+ import Control.Monad.Eff (Eff , kind Effect )
2929import Control.Monad.Eff.Console (CONSOLE )
3030import Control.Monad.Eff.Exception (EXCEPTION )
3131
@@ -45,7 +45,7 @@ import Partial.Unsafe (unsafePartial)
4545import 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
5151foreign import process :: forall props . { | props }
You can’t perform that action at this time.
0 commit comments