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) {
6
6
7
7
clean : [ "externs" , "js" ] ,
8
8
9
- "purescript" : {
9
+ psc : {
10
10
options : {
11
- tco : true ,
12
- main : true ,
13
- magicDo : true
11
+ main : true
14
12
} ,
15
13
lib : {
16
14
src :
@@ -27,5 +25,5 @@ module.exports = function(grunt) {
27
25
grunt . loadNpmTasks ( "grunt-purescript" ) ;
28
26
grunt . loadNpmTasks ( "grunt-contrib-clean" ) ;
29
27
30
- grunt . registerTask ( "default" , [ "purescript:lib " ] ) ;
28
+ grunt . registerTask ( "default" , [ "psc " ] ) ;
31
29
} ;
Original file line number Diff line number Diff line change 3
3
"version" : " 0.0.1" ,
4
4
"devDependencies" : {
5
5
"grunt" : " ~0.4.4" ,
6
- "grunt-purescript" : " ~0.4 .0" ,
6
+ "grunt-purescript" : " ~0.5 .0" ,
7
7
"grunt-contrib-clean" : " ~0.5.0"
8
8
}
9
9
}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ eof = do
23
23
string :: forall m . (Monad m ) => String -> ParserT String m String
24
24
string s = do
25
25
s' <- get
26
- case indexOf s' s of
26
+ case indexOf s s' of
27
27
0 -> do
28
28
put (Consumed true)
29
29
put (substring (length s) (length s') s')
You can’t perform that action at this time.
0 commit comments