Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #7 from purescript/deps
Browse files Browse the repository at this point in the history
Specify dependencies
  • Loading branch information
paf31 committed Dec 11, 2014
2 parents a8d5e0f + 69eda3e commit 1520730
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = function(grunt) {

pscMake: ["<%=libFiles%>"],
dotPsci: ["<%=libFiles%>"],
docgen: {
pscDocs: {
readme: {
src: "src/**/*.purs",
dest: "README.md"
Expand All @@ -25,6 +25,6 @@ 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"]);
};
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
### Types

newtype Endo a where
Endo :: a -> a -> Endo a
Endo :: (a -> a) -> Endo a


### Type Class Instances
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"package.json"
],
"dependencies": {
"purescript-maybe": "*",
"purescript-arrays": "*"
"purescript-maybe" : "~0.2.1",
"purescript-arrays" : "~0.3.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"dependencies": {
"grunt": "~0.4.4",
"grunt-purescript": "~0.5.1",
"grunt-purescript": "~0.6.0",
"grunt-contrib-clean": "~0.5.0"
}
}

0 comments on commit 1520730

Please sign in to comment.