Skip to content

Updates for 0.11 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
4 changes: 2 additions & 2 deletions src/Control/Monad/Eff/Timer.purs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down