File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 17
17
" package.json"
18
18
],
19
19
"dependencies" : {
20
- "purescript-globals" : " ^2 .0.0" ,
21
- "purescript-integers" : " ^2 .0.0" ,
22
- "purescript-maps" : " ^2 .0.0" ,
23
- "purescript-pathy" : " ^3 .0.0" ,
24
- "purescript-string-parsers" : " ^2 .0.0" ,
25
- "purescript-unfoldable" : " ^2 .0.0"
20
+ "purescript-globals" : " ^3 .0.0" ,
21
+ "purescript-integers" : " ^3 .0.0" ,
22
+ "purescript-maps" : " ^3 .0.0" ,
23
+ "purescript-pathy" : " ^4 .0.0" ,
24
+ "purescript-string-parsers" : " ^3 .0.0" ,
25
+ "purescript-unfoldable" : " ^3 .0.0"
26
26
},
27
27
"devDependencies" : {
28
- "purescript-test-unit" : " 10 .0.1 "
28
+ "purescript-test-unit" : " 11 .0.0 "
29
29
}
30
30
}
Original file line number Diff line number Diff line change 6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
- "eslint" : " ^3.8.1 " ,
10
- "pulp" : " ^9 .0.1 " ,
11
- "purescript" : " ^0.10.1 " ,
12
- "purescript-psa" : " ^0.3.9 " ,
13
- "rimraf" : " ^2.5.4 "
9
+ "eslint" : " ^3.19.0 " ,
10
+ "pulp" : " ^11 .0.0 " ,
11
+ "purescript" : " ^0.11.3 " ,
12
+ "purescript-psa" : " ^0.5.1 " ,
13
+ "rimraf" : " ^2.6.1 "
14
14
}
15
15
}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ parsePathAbEmpty p
44
44
45
45
parsePathAbsolute ∷ ∀ p . Parser p → Parser p
46
46
parsePathAbsolute p = wrapParser p $ do
47
- string " /"
47
+ _ <- string " /"
48
48
start ← parseSegmentNonZero
49
49
rest ← joinWith " " <$> many (append <$> string " /" <*> parseSegment)
50
50
pure $ " /" <> start <> rest
You can’t perform that action at this time.
0 commit comments