From 1f3cfb0c3aaab533295192cb39376fd67ed595d0 Mon Sep 17 00:00:00 2001 From: justinwoo Date: Sun, 27 May 2018 19:51:01 +0300 Subject: [PATCH] update packages --- .travis.yml | 8 +++++++- bower.json | 14 +++++++------- package.json | 9 ++++----- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 78cde3d..f5aa859 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,14 @@ language: node_js dist: trusty sudo: required -node_js: 6 +node_js: 8 +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 --production diff --git a/bower.json b/bower.json index b963618..7834a29 100644 --- a/bower.json +++ b/bower.json @@ -12,12 +12,12 @@ "output" ], "dependencies": { - "purescript-effect": "#compiler/0.12", - "purescript-foreign-object": "#compiler/0.12", - "purescript-maybe": "#compiler/0.12", - "purescript-node-streams": "#compiler/0.12", - "purescript-posix-types": "#compiler/0.12", - "purescript-unsafe-coerce": "#compiler/0.12", - "purescript-prelude": "#compiler/0.12" + "purescript-effect": "^2.0.0", + "purescript-foreign-object": "^1.0.0", + "purescript-maybe": "^4.0.0", + "purescript-node-streams": "^4.0.0", + "purescript-posix-types": "^4.0.0", + "purescript-unsafe-coerce": "^4.0.0", + "purescript-prelude": "^4.0.0" } } diff --git a/package.json b/package.json index 2bbc80f..2e21753 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,9 @@ }, "devDependencies": { "jscs": "^3.0.7", - "jshint": "^2.9.4", - "pulp": "^11.0.0", - "purescript-psa": "^0.5.0", - "purescript": "^0.11.1", - "rimraf": "^2.5.4" + "jshint": "^2.9.5", + "pulp": "^12.2.0", + "purescript-psa": "^0.6.0", + "rimraf": "^2.6.2" } }