Skip to content

Commit ca60af2

Browse files
authored
Merge pull request #40 from justinwoo/compiler/0.12
update packages
2 parents 19ba19f + 654fc19 commit ca60af2

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

bower.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
"package.json"
2121
],
2222
"dependencies": {
23-
"purescript-datetime": "#compiler/0.12",
24-
"purescript-foreign": "#compiler/0.12",
25-
"purescript-node-buffer": "#compiler/0.12",
26-
"purescript-node-path": "#compiler/0.12",
27-
"purescript-unsafe-coerce": "#compiler/0.12",
28-
"purescript-nullable": "#compiler/0.12",
29-
"purescript-node-streams": "#compiler/0.12",
30-
"purescript-exceptions": "#compiler/0.12",
31-
"purescript-js-date": "#compiler/0.12",
32-
"purescript-globals": "#compiler/0.12"
23+
"purescript-datetime": "^4.0.0",
24+
"purescript-foreign": "^5.0.0",
25+
"purescript-node-buffer": "^5.0.0",
26+
"purescript-node-path": "^3.0.0",
27+
"purescript-unsafe-coerce": "^4.0.0",
28+
"purescript-nullable": "^4.0.0",
29+
"purescript-node-streams": "^4.0.0",
30+
"purescript-exceptions": "^4.0.0",
31+
"purescript-js-date": "^6.0.0",
32+
"purescript-globals": "^4.0.0"
3333
},
3434
"devDependencies": {
35-
"purescript-console": "#compiler/0.12"
35+
"purescript-console": "^4.1.0"
3636
}
3737
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
},
88
"devDependencies": {
99
"jscs": "^3.0.7",
10-
"jshint": "^2.9.4",
11-
"pulp": "^11.0.0",
12-
"purescript-psa": "^0.5.0",
13-
"rimraf": "^2.6.1"
10+
"jshint": "^2.9.5",
11+
"pulp": "^12.2.0",
12+
"purescript-psa": "^0.6.0",
13+
"rimraf": "^2.6.2"
1414
}
1515
}

src/Node/FS/Perms.purs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import Prelude
1717
import Data.Enum (toEnum)
1818
import Data.Int (fromNumber)
1919
import Data.Maybe (Maybe(..), isNothing, fromJust)
20-
import Data.String (Pattern(Pattern), toCharArray, joinWith, drop, charAt, indexOf)
20+
import Data.String (Pattern(Pattern), joinWith, drop, indexOf)
21+
import Data.String.CodeUnits (charAt, toCharArray)
2122
import Global (readInt)
2223
import Partial.Unsafe (unsafePartial)
2324

0 commit comments

Comments
 (0)