Skip to content

Commit 71d8c13

Browse files
committed
Updates for PureScript 0.9
1 parent b7543cb commit 71d8c13

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

bower.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"David Peter <[email protected]>"
55
],
66
"repository": {
7-
"type": "git",
8-
"url": "git://github.com/sharkdp/purescript-format.git"
7+
"type": "git",
8+
"url": "git://github.com/sharkdp/purescript-format.git"
99
},
1010
"license": "MIT",
1111
"ignore": [
@@ -15,10 +15,13 @@
1515
"test"
1616
],
1717
"dependencies": {
18-
"purescript-strings": "^0.7.1",
19-
"purescript-arrays": "^0.4.5",
20-
"purescript-math": "^0.2.0"
21-
},
18+
"purescript-strings": "^1.0.0",
19+
"purescript-arrays": "^1.0.0",
20+
"purescript-math": "^2.0.0",
21+
"purescript-unfoldable": "^1.0.0",
22+
"purescript-integers": "^1.0.0"
23+
}
24+
,
2225
"devDependencies": {
2326
"purescript-test-unit": "^4.1.0"
2427
}

src/Text/Format.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module Text.Format
1414
import Prelude
1515

1616
import Control.Alt ((<|>))
17-
import Data.Array (replicate)
17+
import Data.Unfoldable (replicate)
1818
import Data.Int as Int
1919
import Data.Maybe (Maybe(..), fromMaybe)
2020
import Data.Monoid (class Monoid)

0 commit comments

Comments
 (0)