Skip to content

Commit

Permalink
Merge pull request #17 from hdgarrood/master
Browse files Browse the repository at this point in the history
Add docs for Alt and Plus
  • Loading branch information
paf31 committed Mar 18, 2015
2 parents 72451a3 + aceaea4 commit 9a4953b
Show file tree
Hide file tree
Showing 7 changed files with 300 additions and 69 deletions.
14 changes: 7 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ module.exports = function(grunt) {

"use strict";

grunt.initConfig({
grunt.initConfig({

libFiles: [
"src/**/*.purs",
"bower_components/purescript-*/src/**/*.purs",
],

clean: ["output"],

pscMake: ["<%=libFiles%>"],
dotPsci: ["<%=libFiles%>"],
docgen: {
pscDocs: {
readme: {
src: "src/**/*.purs",
dest: "README.md"
Expand All @@ -24,7 +24,7 @@ module.exports = function(grunt) {

grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-purescript");
grunt.registerTask("make", ["pscMake", "dotPsci", "docgen"]);

grunt.registerTask("make", ["pscMake", "dotPsci", "pscDocs"]);
grunt.registerTask("default", ["make"]);
};
Loading

0 comments on commit 9a4953b

Please sign in to comment.