Skip to content

Commit

Permalink
Merge pull request #41 from purescript-node/compiler/0.12
Browse files Browse the repository at this point in the history
Compiler/0.12
  • Loading branch information
kritzcreek authored May 29, 2018
2 parents 7712ddc + feef77f commit a8380b5
Show file tree
Hide file tree
Showing 12 changed files with 336 additions and 363 deletions.
30 changes: 19 additions & 11 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,26 @@
"package.json"
],
"dependencies": {
"purescript-datetime": "^3.0.0",
"purescript-foreign": "^4.0.0",
"purescript-node-buffer": "^3.0.0",
"purescript-node-path": "^2.0.0",
"purescript-unsafe-coerce": "^3.0.0",
"purescript-nullable": "^3.0.0",
"purescript-node-streams": "^3.0.0",
"purescript-exceptions": "^3.0.0",
"purescript-js-date": ">= 4.0.0 < 6.0.0",
"purescript-globals": "^3.0.0"
"purescript-datetime": "^4.0.0",
"purescript-effect": "^2.0.0",
"purescript-either": "^4.0.0",
"purescript-enums": "^4.0.0",
"purescript-exceptions": "^4.0.0",
"purescript-functions": "^4.0.0",
"purescript-globals": "^4.0.0",
"purescript-integers": "^4.0.0",
"purescript-js-date": "^6.0.0",
"purescript-maybe": "^4.0.0",
"purescript-node-buffer": "^5.0.0",
"purescript-node-path": "^3.0.0",
"purescript-node-streams": "^4.0.0",
"purescript-nullable": "^4.0.0",
"purescript-partial": "^2.0.0",
"purescript-prelude": "^4.0.0",
"purescript-strings": "^4.0.0",
"purescript-unsafe-coerce": "^4.0.0"
},
"devDependencies": {
"purescript-console": "^3.0.0"
"purescript-console": "^4.1.0"
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"pulp": "^11.0.0",
"purescript-psa": "^0.5.0",
"rimraf": "^2.6.1"
"jshint": "^2.9.5",
"pulp": "^12.2.0",
"purescript-psa": "^0.6.0",
"rimraf": "^2.6.2"
}
}
7 changes: 1 addition & 6 deletions src/Node/FS.purs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module Node.FS
( FS()
, FileDescriptor(..)
( FileDescriptor(..)
, FileFlags(..)
, FileMode(..)
, SymlinkType(..)
Expand All @@ -13,10 +12,6 @@ module Node.FS
) where

import Prelude
import Control.Monad.Eff (kind Effect)

-- | Effect type for file system usage.
foreign import data FS :: Effect

foreign import data FileDescriptor :: Type

Expand Down
Loading

0 comments on commit a8380b5

Please sign in to comment.