Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
garyb committed May 25, 2018
1 parent 79d50a2 commit 4d2dc1a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Dependencies
.psci_modules
bower_components
node_modules

# Generated files
.psci
output
/.*
!/.gitignore
!/.eslintrc.json
!/.travis.yml
package-lock.json
/bower_components/
/node_modules/
/output/
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ language: node_js
dist: trusty
sudo: required
node_js: stable
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
script:
- bower install
- npm run -s build
after_success:
- >-
Expand Down
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"package.json"
],
"dependencies": {
"purescript-js-date": "#compiler/0.12",
"purescript-web-dom": "#compiler/0.12",
"purescript-web-file": "#compiler/0.12",
"purescript-web-storage": "#compiler/0.12"
"purescript-js-date": "^6.0.0",
"purescript-web-dom": "^1.0.0",
"purescript-web-file": "^1.0.0",
"purescript-web-storage": "^2.0.0"
}
}
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"eslint": "^4.19.1",
"pulp": "^12.2.0",
"purescript-psa": "^0.6.0",
"purescript": "^0.11.7",
"rimraf": "^2.6.2"
}
}
2 changes: 1 addition & 1 deletion src/Web/HTML/Window.purs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import Web.HTML.HTMLDocument (HTMLDocument)
import Web.HTML.History (History)
import Web.HTML.Location (Location)
import Web.HTML.Navigator (Navigator)
import Web.WebStorage.Storage (Storage)
import Web.Storage.Storage (Storage)

foreign import data Window :: Type

Expand Down

0 comments on commit 4d2dc1a

Please sign in to comment.