Skip to content
This repository was archived by the owner on Dec 18, 2020. It is now read-only.

Commit 87f4fd2

Browse files
committed
Use noPrelude option, add pscDocs
1 parent 2e2b1ba commit 87f4fd2

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

Gruntfile.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@ module.exports = function(grunt) {
1111

1212
clean: ["output"],
1313

14-
pscMake: ["<%=libFiles%>"],
14+
pscMake: {
15+
options: {
16+
noPrelude: true
17+
},
18+
src: ["<%=libFiles%>"]
19+
},
1520
dotPsci: ["<%=libFiles%>"],
16-
docgen: {
21+
pscDocs: {
1722
readme: {
1823
src: "src/**/*.purs",
1924
dest: "README.md"
@@ -25,6 +30,6 @@ module.exports = function(grunt) {
2530
grunt.loadNpmTasks("grunt-contrib-clean");
2631
grunt.loadNpmTasks("grunt-purescript");
2732

28-
grunt.registerTask("make", ["pscMake", "dotPsci", "docgen"]);
33+
grunt.registerTask("make", ["pscMake", "dotPsci", "pscDocs"]);
2934
grunt.registerTask("default", ["make"]);
3035
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"dependencies": {
44
"grunt": "~0.4.4",
5-
"grunt-purescript": "~0.5.1",
5+
"grunt-purescript": "~0.6.0",
66
"grunt-contrib-clean": "~0.5.0"
77
}
88
}

0 commit comments

Comments
 (0)