From c700550b72b800d389f3df9541be4d8c63aae1d6 Mon Sep 17 00:00:00 2001 From: Mohammed Anas <32234660+mhmdanas@users.noreply.github.com> Date: Mon, 13 Jul 2020 15:24:22 +0000 Subject: [PATCH 1/3] Remove `return {}` --- src/Effect/Console.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Effect/Console.js b/src/Effect/Console.js index 1cc2ce0..4009a17 100644 --- a/src/Effect/Console.js +++ b/src/Effect/Console.js @@ -3,53 +3,45 @@ exports.log = function (s) { return function () { console.log(s); - return {}; }; }; exports.warn = function (s) { return function () { console.warn(s); - return {}; }; }; exports.error = function (s) { return function () { console.error(s); - return {}; }; }; exports.info = function (s) { return function () { console.info(s); - return {}; }; }; exports.time = function (s) { return function () { console.time(s); - return {}; }; }; exports.timeLog = function (s) { return function () { console.timeLog(s); - return {}; }; }; exports.timeEnd = function (s) { return function () { console.timeEnd(s); - return {}; }; }; exports.clear = function () { console.clear(); - return {}; }; From 959a793590cde10155d407bf3fc763bee811e388 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 5 Oct 2020 13:01:27 -0700 Subject: [PATCH 2/3] Update tag to v0.14.0-rc2 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7399e47..b44040b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,8 @@ node_js: stable env: - PATH=$HOME/purescript:$PATH install: - - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest)) + # - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest)) + - TAG=v0.14.0-rc2 - curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz - tar -xvf $HOME/purescript.tar.gz -C $HOME/ - chmod a+x $HOME/purescript From e9604a8b5d4302841f21c4a96209899d7571b47b Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Mon, 5 Oct 2020 13:01:50 -0700 Subject: [PATCH 3/3] Update deps to master --- bower.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index 0744b89..0b41d73 100644 --- a/bower.json +++ b/bower.json @@ -16,7 +16,7 @@ "package.json" ], "dependencies": { - "purescript-effect": "^2.0.0", - "purescript-prelude": "^4.0.0" + "purescript-effect": "master", + "purescript-prelude": "master" } }