Skip to content

Upgrade to purescript 0.12, purescript-react 6.0.0 #23

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 4 commits into from
Jun 12, 2018
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
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ sudo: false
node_js:
- 8
install:
- npm install purescript@0.11.7 pulp bower -g
- npm install purescript@0.12.0 pulp bower -g
- bower install
script:
- pulp build



4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ place to go for help. This will be acheived by:
lagging behind or the component does not yet have a safe version, it's still possible to use
the library without too much hassle.

- Stay event framework agnostic. This is acheived by using `EffFnX` to model the event callbacks.
- Stay event framework agnostic. This is acheived by using `EffectFnX` to model the event callbacks.
There will be additional libraries for your favourite action library - e.g. `purescript-reactnative-thermite`
I have also made a very small and simple library for dispatching react actions [purescript-dispatcher-react](http://github.com/doolse/purescript-dispatcher-react).

Expand Down Expand Up @@ -168,7 +168,7 @@ Replace the contents of `src/Main.purs` with
module Main where

import Prelude
import Control.Monad.Eff (Eff)
import Effect (Eff)
import React (ReactClass, ReactElement, Render, createClass, getProps, spec)
import ReactNative.API (REGISTER, registerComponent)
import ReactNative.Components.Text (text_)
Expand Down
19 changes: 11 additions & 8 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,18 @@
"url": "git://github.com/doolse/purescript-reactnative.git"
},
"dependencies": {
"purescript-react": "^5.1.0",
"purescript-maybe": "^3.1.0",
"purescript-newtype": "^2.0.0",
"purescript-integers": "^3.2.0",
"purescript-maps": "^3.6.0",
"purescript-nullable": "^3.0.0",
"purescript-eff": "^3.2.1"
"purescript-prelude": "^4.0.0",
"purescript-react": "^6.0.0",
"purescript-maybe": "^4.0.0",
"purescript-newtype": "^3.0.0",
"purescript-integers": "^4.0.0",
"purescript-foreign-object": "^1.0.0",
"purescript-nullable": "^4.0.0",
"purescript-effect": "^2.0.0"
},
"devDependencies": {
"purescript-spec": "^2.0.0"
"purescript-avar": "^3.0.0",
"purescript-generics-rep": "^6.0.0",
"purescript-spec": "^3.0.0"
}
}
Loading