File tree Expand file tree Collapse file tree 5 files changed +37
-2
lines changed Expand file tree Collapse file tree 5 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "bitwise" : true ,
3
+ "eqeqeq" : true ,
4
+ "forin" : true ,
5
+ "freeze" : true ,
6
+ "funcscope" : true ,
7
+ "futurehostile" : true ,
8
+ "globalstrict" : true ,
9
+ "latedef" : true ,
10
+ "maxparams" : 1 ,
11
+ "noarg" : true ,
12
+ "nocomma" : true ,
13
+ "nonew" : true ,
14
+ "notypeof" : true ,
15
+ "singleGroups" : true ,
16
+ "undef" : true ,
17
+ "unused" : true ,
18
+ "eqnull" : true
19
+ }
20
+
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"postinstall" : " pulp dep install" ,
5
- "build" : " jshint src && jscs src && pulp build && rimraf docs && pulp docs"
5
+ "build" : " jshint src && pulp build && rimraf docs && pulp docs"
6
6
},
7
7
"devDependencies" : {
8
- "jscs" : " ^1.13.1" ,
9
8
"jshint" : " ^2.8.0" ,
10
9
"pulp" : " ^4.0.2" ,
11
10
"rimraf" : " ^2.4.1" ,
Original file line number Diff line number Diff line change
1
+ /* global exports */
1
2
"use strict" ;
2
3
3
4
// module Node.Stream
Original file line number Diff line number Diff line change
1
+ /* global exports */
2
+ /* global process */
3
+ "use strict" ;
4
+
5
+ // module Node.Stream.StdIO
6
+
7
+
8
+ exports . stdin = process . stdin ;
9
+ exports . stdout = process . stdout ;
10
+ exports . stderr = process . stderr ;
Original file line number Diff line number Diff line change 1
1
-- | The standard IO streams for the current process.
2
2
module Node.Stream.StdIO where
3
3
4
+ import Prelude
5
+ import Control.Monad.Eff.Console
6
+
7
+ import Node.Stream
8
+
4
9
foreign import stdin :: forall eff . Readable () (console :: CONSOLE | eff )
5
10
foreign import stdout :: forall eff . Writable () (console :: CONSOLE | eff )
6
11
foreign import stderr :: forall eff . Writable () (console :: CONSOLE | eff )
You can’t perform that action at this time.
0 commit comments