Skip to content

Commit 6fab219

Browse files
authored
Merge pull request #83 from lamdu/master
Update dependencies
2 parents 9d0633b + f5c46fe commit 6fab219

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

language-ecmascript.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: language-ecmascript
2-
Version: 0.17.2.0
2+
Version: 0.18
33
Cabal-Version: >= 1.10
44
Copyright: (c) 2007-2012 Brown University, (c) 2008-2010 Claudiu Saftoiu,
55
(c) 2012-2015 Stevens Institute of Technology, (c) 2016 Eyal Lotem, (c) 2016-2017 Andrey Chudnov
@@ -38,14 +38,14 @@ Library
3838
base >= 4 && < 5,
3939
mtl >= 1 && < 3,
4040
parsec > 3 && < 3.2.0,
41-
wl-pprint >= 1.2 && < 2,
41+
ansi-wl-pprint >= 0.6 && < 1,
4242
containers == 0.*,
4343
uniplate >= 1.6 && <1.7,
4444
data-default-class >= 0.0.1 && < 0.2,
4545
QuickCheck >= 2.5 && < 3,
4646
template-haskell >= 2.7 && < 3,
4747
Diff == 0.3.*,
48-
testing-feat >= 0.4.0.2 && < 0.5,
48+
testing-feat >= 0.4.0.2 && < 1.1,
4949
charset >= 0.3
5050
ghc-options:
5151
-fwarn-incomplete-patterns
@@ -82,7 +82,7 @@ Test-Suite test
8282
base >= 4 && < 5,
8383
mtl >= 1 && < 3,
8484
parsec >= 3 && < 3.2.0,
85-
wl-pprint >= 1.2 && < 2,
85+
ansi-wl-pprint >= 0.6 && < 1,
8686
containers == 0.*,
8787
directory >= 1.2 && < 1.4,
8888
filepath >= 1.3 && < 1.5,

src/Language/ECMAScript3/PrettyPrint.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ module Language.ECMAScript3.PrettyPrint (Pretty (..)
1010
,unsafeInExprStmt
1111
) where
1212

13-
import qualified Text.PrettyPrint.Leijen as Pretty
14-
import Text.PrettyPrint.Leijen hiding (Pretty, parens)
13+
import qualified Text.PrettyPrint.ANSI.Leijen as Pretty
14+
import Text.PrettyPrint.ANSI.Leijen hiding (Pretty, parens)
1515
import Language.ECMAScript3.Syntax
1616
import Prelude hiding (maybe, id)
1717
import qualified Prelude

0 commit comments

Comments
 (0)