File tree 3 files changed +15
-15
lines changed
3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 12
12
" output"
13
13
],
14
14
"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 "
24
24
}
25
25
}
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"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" ,
6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
9
"jscs" : " ^3.0.7" ,
10
10
"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" ,
14
14
"rimraf" : " ^2.5.4"
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ module Node.Process
25
25
26
26
import Prelude
27
27
28
- import Control.Monad.Eff (Eff )
28
+ import Control.Monad.Eff (Eff , kind Effect )
29
29
import Control.Monad.Eff.Console (CONSOLE )
30
30
import Control.Monad.Eff.Exception (EXCEPTION )
31
31
@@ -45,7 +45,7 @@ import Partial.Unsafe (unsafePartial)
45
45
import Unsafe.Coerce (unsafeCoerce )
46
46
47
47
-- | An effect tracking interaction with the global `process` object.
48
- foreign import data PROCESS :: !
48
+ foreign import data PROCESS :: Effect
49
49
50
50
-- YOLO
51
51
foreign import process :: forall props . { | props }
You can’t perform that action at this time.
0 commit comments