Skip to content

Commit 88230df

Browse files
committed
PR review comments implemented:
1. Caret ranges in bower.json instead of tilde #30 (comment) 2. Open import for Prelude #30 (comment)
1 parent a6cd5ae commit 88230df

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
lines changed

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
"purescript-node-buffer": "^1.0.0",
2121
"purescript-node-path": "^1.0.0",
2222
"purescript-unsafe-coerce": "^1.0.0",
23-
"purescript-nullable": "~1.0.0",
24-
"purescript-node-streams": "~1.0.0",
25-
"purescript-exceptions": "~1.0.0",
23+
"purescript-nullable": "^1.0.0",
24+
"purescript-node-streams": "^1.0.0",
25+
"purescript-exceptions": "^1.0.0",
2626
"purescript-js-date": "^1.0.0",
2727
"purescript-globals": "^1.0.0"
2828
},
2929
"devDependencies": {
30-
"purescript-console": "~1.0.0"
30+
"purescript-console": "^1.0.0"
3131
},
3232
"repository": {
3333
"type": "git",

src/Node/FS/Async.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Node.FS.Async
3131
, fdClose
3232
) where
3333

34-
import Prelude (Unit, bind, show, flip, ($), (<<<), (/), (<$>))
34+
import Prelude
3535
import Control.Monad.Eff (Eff, runPure)
3636
import Control.Monad.Eff.Unsafe (unsafeInterleaveEff)
3737
import Control.Monad.Eff.Exception (Error)

src/Node/FS/Internal.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
module Node.FS.Internal where
33

4-
import Prelude (Unit)
4+
import Prelude
55
import Control.Monad.Eff (Eff)
66
import Unsafe.Coerce (unsafeCoerce)
77

src/Node/FS/Perms.purs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ module Node.FS.Perms
1212
, permsToInt
1313
) where
1414

15-
import Prelude (class Show, class Ord, class Eq, class Semiring,
16-
show, otherwise, compare, one, zero,
17-
(<<<), ($), (<>), (+), (<*>), (<$>), (==), (&&), (||))
15+
import Prelude
1816
import Global (readInt)
1917
import Data.Maybe (Maybe(..), isNothing, fromJust)
2018
import Data.Char (fromCharCode)

src/Node/FS/Stats.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module Node.FS.Stats
1313
, statusChangedTime
1414
) where
1515

16-
import Prelude (class Show, ($), (<>))
16+
import Prelude
1717
import Data.DateTime (DateTime)
1818
import Data.Function.Uncurried (Fn2, Fn0, runFn2)
1919
import Data.JSDate (JSDate, toDateTime)

src/Node/FS/Stream.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module Node.FS.Stream
1313
, fdCreateReadStreamWith
1414
) where
1515

16-
import Prelude (($), (<<<), (+))
16+
import Prelude
1717
import Data.Maybe (Maybe(..))
1818
import Data.Function.Uncurried (Fn2, runFn2)
1919
import Data.Nullable (Nullable, toNullable)

src/Node/FS/Sync.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Node.FS.Sync
3131
, fdClose
3232
) where
3333

34-
import Prelude (Unit, bind, show, flip, map, ($), (<<<), (/))
34+
import Prelude
3535
import Control.Monad.Eff (Eff)
3636
import Control.Monad.Eff.Exception (EXCEPTION)
3737
import Data.DateTime (DateTime)

0 commit comments

Comments
 (0)