Skip to content

Commit 3dd3d3d

Browse files
committed
Update build, fix warning
1 parent 074102e commit 3dd3d3d

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.travis.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
2-
sudo: false
3-
node_js:
4-
- 5
2+
dist: trusty
3+
sudo: required
4+
node_js: 6
55
env:
66
- PATH=$HOME/purescript:$PATH
77
install:
@@ -11,13 +11,11 @@ install:
1111
- chmod a+x $HOME/purescript
1212
- npm install -g bower
1313
- npm install
14+
- bower install
1415
script:
1516
- npm run build
1617
after_success:
1718
- >-
1819
test $TRAVIS_TAG &&
19-
psc-publish > .pursuit.json &&
20-
curl -X POST http://pursuit.purescript.org/packages \
21-
-d @.pursuit.json \
22-
-H 'Accept: application/json' \
23-
-H "Authorization: token ${GITHUB_TOKEN}"
20+
echo $GITHUB_TOKEN | pulp login &&
21+
echo y | pulp publish --no-push

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-prelude": "^1.0.0-rc.1"
20+
"purescript-prelude": "^1.0.0-rc.4"
2121
}
2222
}

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"private": true,
33
"scripts": {
4-
"postinstall": "pulp dep install",
54
"clean": "rimraf output && rimraf .pulp-cache",
65
"build": "pulp build"
76
},
87
"devDependencies": {
9-
"pulp": "^8.0.0",
8+
"pulp": "^8.2.0",
109
"rimraf": "^2.5.0"
1110
}
1211
}

src/Control/MonadPlus.purs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import Control.MonadZero (class MonadZero, guard)
2121
import Control.Plus (class Plus, empty)
2222

2323
import Data.Functor (class Functor, map, void, ($>), (<#>), (<$), (<$>))
24-
import Data.Unit (Unit, unit)
2524

2625
-- | The `MonadPlus` type class has no members of its own but extends
2726
-- | `MonadZero` with an additional law:

0 commit comments

Comments
 (0)