Skip to content

Commit

Permalink
Update build, fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
garyb committed May 20, 2016
1 parent 968a2a5 commit b31dfa8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
17 changes: 8 additions & 9 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 @@ -11,14 +11,13 @@ install:
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
- bower install
script:
- npm test
- bower install --production
- npm run -s build
- bower install
- npm -s test
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
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "jshint src && jscs src && pulp build",
"test": "jshint src && jscs src && pulp test"
"build": "jshint src && jscs src && pulp build --censor-lib --strict",
"test": "pulp test"
},
"devDependencies": {
"jscs": "^2.8.0",
"jshint": "^2.9.1",
"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/Array/ST.purs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ module Data.Array.ST
, toAssocArray
) where

import Prelude

import Control.Monad.Eff (Eff)
import Control.Monad.ST (ST)

Expand Down

0 comments on commit b31dfa8

Please sign in to comment.