Skip to content

Commit 4d2dc1a

Browse files
committed
Update dependencies
1 parent 79d50a2 commit 4d2dc1a

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

.gitignore

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Dependencies
2-
.psci_modules
3-
bower_components
4-
node_modules
5-
6-
# Generated files
7-
.psci
8-
output
1+
/.*
2+
!/.gitignore
3+
!/.eslintrc.json
4+
!/.travis.yml
5+
package-lock.json
6+
/bower_components/
7+
/node_modules/
8+
/output/

.travis.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ language: node_js
22
dist: trusty
33
sudo: required
44
node_js: stable
5+
env:
6+
- PATH=$HOME/purescript:$PATH
57
install:
8+
- 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')
9+
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10+
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11+
- chmod a+x $HOME/purescript
612
- npm install -g bower
713
- npm install
8-
- bower install
914
script:
15+
- bower install
1016
- npm run -s build
1117
after_success:
1218
- >-

bower.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"package.json"
1616
],
1717
"dependencies": {
18-
"purescript-js-date": "#compiler/0.12",
19-
"purescript-web-dom": "#compiler/0.12",
20-
"purescript-web-file": "#compiler/0.12",
21-
"purescript-web-storage": "#compiler/0.12"
18+
"purescript-js-date": "^6.0.0",
19+
"purescript-web-dom": "^1.0.0",
20+
"purescript-web-file": "^1.0.0",
21+
"purescript-web-storage": "^2.0.0"
2222
}
2323
}

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"eslint": "^4.19.1",
99
"pulp": "^12.2.0",
1010
"purescript-psa": "^0.6.0",
11-
"purescript": "^0.11.7",
1211
"rimraf": "^2.6.2"
1312
}
1413
}

src/Web/HTML/Window.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import Web.HTML.HTMLDocument (HTMLDocument)
4646
import Web.HTML.History (History)
4747
import Web.HTML.Location (Location)
4848
import Web.HTML.Navigator (Navigator)
49-
import Web.WebStorage.Storage (Storage)
49+
import Web.Storage.Storage (Storage)
5050

5151
foreign import data Window :: Type
5252

0 commit comments

Comments
 (0)