Skip to content

Commit

Permalink
Update build, fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
garyb committed May 20, 2016
1 parent e4fdb6c commit a649126
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
13 changes: 5 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
sudo: required
dist: trusty
node_js: 5
sudo: required
node_js: 6
env:
- PATH=$HOME/purescript:$PATH
install:
Expand All @@ -13,12 +13,9 @@ install:
- npm install
- bower install
script:
- npm run build
- npm run -s 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}"
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build"
"build": "pulp build --censor-lib --strict"
},
"devDependencies": {
"pulp": "^8.1.0",
"pulp": "^8.2.0",
"purescript-psa": "^0.3.8",
"rimraf": "^2.5.0"
}
}
2 changes: 0 additions & 2 deletions src/Data/Profunctor/Cochoice.purs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
module Data.Profunctor.Cochoice where

import Prelude

import Data.Either (Either)
import Data.Profunctor (class Profunctor)

Expand Down
2 changes: 0 additions & 2 deletions src/Data/Profunctor/Costrong.purs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
module Data.Profunctor.Costrong where

import Prelude

import Data.Tuple (Tuple)
import Data.Profunctor (class Profunctor)

Expand Down

0 comments on commit a649126

Please sign in to comment.