Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from jonsterling/ready/dep-version-wrangling
Browse files Browse the repository at this point in the history
Dependency version wrangling
  • Loading branch information
jonsterling committed Sep 8, 2015
2 parents 56d327a + 41e7538 commit cfd1013
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,9 @@ language: node_js
sudo: false
node_js:
- 0.12.7
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 gulp bower
- npm install
- npm install -g bower
- bower install
script:
- npm run build
13 changes: 8 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@
],
"description": "A data type for browser features and detectors to test for the features",
"keywords": [
"purescript",
"platform"
"purescript"
],
"license": "Apache-2.0",
"dependencies": {
"purescript-base": "^0.1.0",
"purescript-exceptions": "v0.3.0",
"purescript-prelude": "<= 0.1.1",
"purescript-exceptions": "^0.3.0",
"purescript-prelude": "^0.1.2",
"purescript-dom": "^0.1.2",
"purescript-maps": "^0.4.0"
"purescript-maps": "^0.4.0",
"purescript-strings": "^0.7.0"
},
"resolutions": {
"purescript-strings": "^0.7.0"
}
}

0 comments on commit cfd1013

Please sign in to comment.