Skip to content

Commit c671fc0

Browse files
committed
Simplify build tasks
1 parent ed4cd13 commit c671fc0

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Gruntfile.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ module.exports = function(grunt) {
99
"bower_components/purescript-*/src/**/*.purs",
1010
],
1111

12-
clean: {
13-
dedupe: ["bower_components/purescript-maybe"],
14-
lib: ["js", "externs"]
15-
},
12+
clean: ["output"],
1613

1714
pscMake: ["<%=libFiles%>"],
1815
dotPsci: ["<%=libFiles%>"]
@@ -22,6 +19,6 @@ module.exports = function(grunt) {
2219
grunt.loadNpmTasks("grunt-contrib-clean");
2320
grunt.loadNpmTasks("grunt-purescript");
2421

25-
grunt.registerTask("make", ["clean:dedupe", "pscMake", "dotPsci"]);
22+
grunt.registerTask("make", ["pscMake", "dotPsci"]);
2623
grunt.registerTask("default", ["make"]);
2724
};

0 commit comments

Comments
 (0)