Skip to content

Commit

Permalink
Merge pull request #16 from NightRa/master
Browse files Browse the repository at this point in the history
Remove enums dependency and update other dependencies, resolves #15
  • Loading branch information
paf31 committed Nov 26, 2014
2 parents d464c5c + 137209d commit b4df93a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 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 @@ -35,7 +35,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("example", ["psc:example"]);
grunt.registerTask("default", ["make"]);
};
11 changes: 5 additions & 6 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@
],
"dependencies": {
"purescript-random": "~0.1.1",
"purescript-enums": "~0.2.1",
"purescript-exceptions": "~0.2.1",
"purescript-exceptions": "~0.2.2",
"purescript-arrays": "~0.2.1",
"purescript-strings": "~0.4.0",
"purescript-strings": "~0.4.1",
"purescript-math": "~0.1.0",
"purescript-tuples": "~0.2.1",
"purescript-either": "~0.1.3",
"purescript-tuples": "~0.2.2",
"purescript-either": "~0.1.4",
"purescript-maybe": "~0.2.1",
"purescript-foldable-traversable": "~0.1.3"
"purescript-foldable-traversable": "~0.1.4"
}
}

0 comments on commit b4df93a

Please sign in to comment.