From 137209d20537e7184f1c08a1fa29bcaa8408dc5e Mon Sep 17 00:00:00 2001 From: NightRa Date: Wed, 26 Nov 2014 14:23:58 +0200 Subject: [PATCH] Remove enums dependency and update other dependencies --- Gruntfile.js | 4 ++-- bower.json | 11 +++++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index bdf2c8c..5a8a9f5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,7 +13,7 @@ module.exports = function(grunt) { pscMake: ["<%=libFiles%>"], dotPsci: ["<%=libFiles%>"], - docgen: { + pscDocs: { readme: { src: "src/**/*.purs", dest: "README.md" @@ -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"]); }; diff --git a/bower.json b/bower.json index 3aefb2f..bf278b4 100644 --- a/bower.json +++ b/bower.json @@ -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" } }