File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,9 @@ module.exports = function(grunt) {
66
77 clean : [ "externs" , "js" ] ,
88
9- "purescript" : {
9+ psc : {
1010 options : {
11- tco : true ,
12- main : true ,
13- magicDo : true
11+ main : true
1412 } ,
1513 lib : {
1614 src :
@@ -27,5 +25,5 @@ module.exports = function(grunt) {
2725 grunt . loadNpmTasks ( "grunt-purescript" ) ;
2826 grunt . loadNpmTasks ( "grunt-contrib-clean" ) ;
2927
30- grunt . registerTask ( "default" , [ "purescript:lib " ] ) ;
28+ grunt . registerTask ( "default" , [ "psc " ] ) ;
3129} ;
Original file line number Diff line number Diff line change 33 "version" : " 0.0.1" ,
44 "devDependencies" : {
55 "grunt" : " ~0.4.4" ,
6- "grunt-purescript" : " ~0.4 .0" ,
6+ "grunt-purescript" : " ~0.5 .0" ,
77 "grunt-contrib-clean" : " ~0.5.0"
88 }
99}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ eof = do
2323string :: forall m . (Monad m ) => String -> ParserT String m String
2424string s = do
2525 s' <- get
26- case indexOf s' s of
26+ case indexOf s s' of
2727 0 -> do
2828 put (Consumed true)
2929 put (substring (length s) (length s') s')
You can’t perform that action at this time.
0 commit comments