File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = function ( grunt ) {
2
+
3
+ "use strict" ;
4
+
5
+ grunt . initConfig ( {
6
+
7
+ clean : [ "externs" , "js" ] ,
8
+
9
+ "purescript-make" : {
10
+ options : {
11
+ tco : true ,
12
+ magicDo : true
13
+ } ,
14
+ lib : {
15
+ src :
16
+ [ "src/**/*.purs.hs"
17
+ , "bower_components/purescript-*/src/**/*.purs"
18
+ ]
19
+ }
20
+ }
21
+
22
+ } ) ;
23
+
24
+ grunt . loadNpmTasks ( "grunt-purescript" ) ;
25
+ grunt . loadNpmTasks ( "grunt-contrib-clean" ) ;
26
+
27
+ grunt . registerTask ( "default" , [ "purescript-make:lib" ] ) ;
28
+ } ;
Original file line number Diff line number Diff line change 13
13
" examples" ,
14
14
" externs" ,
15
15
" js"
16
- ]
16
+ ],
17
+ "dependencies" : {
18
+ "purescript-tuples" : " *"
19
+ }
17
20
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " purescript-node-readline" ,
3
+ "version" : " 0.0.0" ,
4
+ "devDependencies" : {
5
+ "grunt" : " ~0.4.4" ,
6
+ "grunt-purescript" : " ~0.3.1" ,
7
+ "grunt-contrib-clean" : " ~0.5.0"
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments