Skip to content

Commit e2f47cd

Browse files
committed
Update to latest grunt-purescript
1 parent 9145c2b commit e2f47cd

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
js/
2-
externs/
1+
output/
32
node_modules/
43
bower_components/

Gruntfile.js

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,17 @@ module.exports = function(grunt) {
44

55
grunt.initConfig({
66

7-
"purescript-make": {
7+
pscMake: {
88
options: {
9-
tco: true,
10-
magicDo: true
119
},
1210
main: {
1311
files: {
14-
src:
15-
[ "src/**/*.purs.hs"
16-
, "bower_components/purescript-*/src/**/*.purs"
17-
, "bower_components/purescript-*/src/**/*.purs.hs"
18-
]
12+
src: ["src/**/*.purs"]
1913
}
2014
},
2115
}
2216
});
2317

2418
grunt.loadNpmTasks("grunt-purescript");
25-
grunt.registerTask("default", ["purescript-make:main"]);
19+
grunt.registerTask("default", ["pscMake:main"]);
2620
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"devDependencies": {
55
"grunt": "~0.4.4",
6-
"grunt-purescript": "~0.4.0",
6+
"grunt-purescript": "~0.5.1",
77
"grunt-contrib-clean": "~0.5.0",
88
"grunt-execute": "~0.1.5"
99
}
File renamed without changes.

0 commit comments

Comments
 (0)