Skip to content

Commit f16093f

Browse files
kejacesharkdp
authored andcommitted
Updated to work with purs-0.11.3 (#24)
1 parent c0543d7 commit f16093f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

bower.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"url": "git://github.com/sharkdp/purescript-flare.git"
1717
},
1818
"dependencies": {
19-
"purescript-foldable-traversable": "^2.0.0",
20-
"purescript-dom": "^3.0.0",
21-
"purescript-signal": "^8.0.0",
22-
"purescript-canvas": "^2.0.0",
23-
"purescript-drawing": "^2.0.0",
24-
"purescript-smolder": "^6.0.0",
25-
"purescript-nonempty": "^3.0.0",
26-
"purescript-datetime": "^2.0.0"
19+
"purescript-foldable-traversable": "^3.0.0",
20+
"purescript-dom": "^4.1.0",
21+
"purescript-signal": "^9.0.0",
22+
"purescript-canvas": "^3.0.0",
23+
"purescript-drawing": "^3.0.0",
24+
"purescript-smolder": "^7.0.0",
25+
"purescript-nonempty": "^4.0.0",
26+
"purescript-datetime": "^3.0.0"
2727
}
2828
}

src/Flare/Drawing.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runFlareDrawing controls canvasID ui = do
3232
let render' drawing = do
3333
w <- getCanvasWidth canvas
3434
h <- getCanvasHeight canvas
35-
clearRect ctx { x: 0.0, y: 0.0, w, h }
35+
_ <- clearRect ctx { x: 0.0, y: 0.0, w, h }
3636
render ctx drawing
3737

3838
runFlareWith controls render' ui

0 commit comments

Comments
 (0)