From ce467c28a4eac331085af89d38475c215a568fab Mon Sep 17 00:00:00 2001 From: Jorge Acereda Date: Mon, 3 Apr 2017 01:10:47 +0200 Subject: [PATCH] Updates for 0.11 --- bower.json | 8 ++++---- package.json | 12 ++++++------ src/Control/Monad/Eff/Timer.purs | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bower.json b/bower.json index 7ee5020..d554fdd 100644 --- a/bower.json +++ b/bower.json @@ -17,11 +17,11 @@ "package.json" ], "dependencies": { - "purescript-eff": "^2.0.0" + "purescript-eff": "^3.0.0" }, "devDependencies": { - "purescript-assert": "^2.0.0", - "purescript-refs": "^2.0.0", - "purescript-console": "^2.0.0" + "purescript-assert": "^3.0.0", + "purescript-refs": "^3.0.0", + "purescript-console": "^3.0.0" } } diff --git a/package.json b/package.json index 44534d6..c477226 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,14 @@ "private": true, "scripts": { "clean": "rimraf output && rimraf .pulp-cache", - "build": "jshint src && jscs src && pulp build --censor-lib --strict", + "build": "jshint src && jscs src && pulp build -- --censor-lib --strict", "test": "pulp test" }, "devDependencies": { - "jscs": "^2.8.0", - "jshint": "^2.9.1", - "pulp": "^9.0.0", - "purescript-psa": "^0.3.8", - "rimraf": "^2.5.0" + "jscs": "^2.11.0", + "jshint": "^2.9.4", + "pulp": "^11.0.0", + "purescript-psa": "^0.5.0", + "rimraf": "^2.6.1" } } diff --git a/src/Control/Monad/Eff/Timer.purs b/src/Control/Monad/Eff/Timer.purs index b6b410e..ef8de16 100644 --- a/src/Control/Monad/Eff/Timer.purs +++ b/src/Control/Monad/Eff/Timer.purs @@ -10,10 +10,10 @@ module Control.Monad.Eff.Timer import Prelude -import Control.Monad.Eff (Eff) +import Control.Monad.Eff (kind Effect, Eff) -- | The effect for the usage of a JavaScript timer. -foreign import data TIMER :: ! +foreign import data TIMER :: Effect -- | The ID of a timer started with `setTimeout`. newtype TimeoutId = TimeoutId Int