-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from purescript/0.8-updates
Updates for PureScript 0.8
- Loading branch information
Showing
18 changed files
with
63 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- 0.10 | ||
sudo: required | ||
dist: trusty | ||
node_js: 5 | ||
env: | ||
- PATH=$HOME/purescript:$PATH | ||
install: | ||
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p') | ||
- wget -O $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 | ||
- npm install -g bower | ||
- npm install | ||
- bower install | ||
script: | ||
- npm run build | ||
after_success: | ||
- >- | ||
test $TRAVIS_TAG && | ||
psc-publish > .pursuit.json && | ||
curl -X POST http://pursuit.purescript.org/packages \ | ||
-d @.pursuit.json \ | ||
-H 'Accept: application/json' \ | ||
-H "Authorization: token ${GITHUB_TOKEN}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
{ | ||
"name": "purescript-profunctor", | ||
"homepage": "https://github.com/purescript/purescript-profunctor", | ||
"keywords": [ | ||
"purescript", | ||
"profunctor" | ||
], | ||
"description": "Profunctor typeclass for PureScript", | ||
"authors": [ | ||
"Hardy Jones <[email protected]>", | ||
|
@@ -26,7 +22,7 @@ | |
"package.json" | ||
], | ||
"dependencies": { | ||
"purescript-either": "^0.2.0", | ||
"purescript-tuples": "^0.4.0" | ||
"purescript-either": "^1.0.0-rc.1", | ||
"purescript-tuples": "^1.0.0-rc.1" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "pulp dep install", | ||
"build": "pulp build && rimraf docs && pulp docs" | ||
"clean": "rimraf output && rimraf .pulp-cache", | ||
"build": "pulp build" | ||
}, | ||
"devDependencies": { | ||
"pulp": "^4.0.2", | ||
"rimraf": "^2.4.1" | ||
"pulp": "^8.1.0", | ||
"rimraf": "^2.5.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.