Skip to content

Commit 93945ff

Browse files
committed
Add docs for Alt and Plus
I also updated docsgen to pscDocs, hope that's ok.
1 parent 43e216a commit 93945ff

File tree

4 files changed

+257
-68
lines changed

4 files changed

+257
-68
lines changed

Gruntfile.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ module.exports = function(grunt) {
22

33
"use strict";
44

5-
grunt.initConfig({
6-
5+
grunt.initConfig({
6+
77
libFiles: [
88
"src/**/*.purs",
99
"bower_components/purescript-*/src/**/*.purs",
1010
],
11-
11+
1212
clean: ["output"],
13-
13+
1414
pscMake: ["<%=libFiles%>"],
1515
dotPsci: ["<%=libFiles%>"],
16-
docgen: {
16+
pscDocs: {
1717
readme: {
1818
src: "src/**/*.purs",
1919
dest: "README.md"
@@ -24,7 +24,7 @@ module.exports = function(grunt) {
2424

2525
grunt.loadNpmTasks("grunt-contrib-clean");
2626
grunt.loadNpmTasks("grunt-purescript");
27-
28-
grunt.registerTask("make", ["pscMake", "dotPsci", "docgen"]);
27+
28+
grunt.registerTask("make", ["pscMake", "dotPsci", "pscDocs"]);
2929
grunt.registerTask("default", ["make"]);
3030
};

0 commit comments

Comments
 (0)