Skip to content

Commit 7a6afd6

Browse files
committed
Update dependencies and readme
1 parent fe1fad0 commit 7a6afd6

File tree

5 files changed

+39
-21
lines changed

5 files changed

+39
-21
lines changed

.gitignore

Lines changed: 8 additions & 8 deletions
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

Lines changed: 7 additions & 1 deletion
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
- >-

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
# purescript-web-file
1+
# purescript-web-file
2+
3+
[![Latest release](http://img.shields.io/github/release/purescript-web/purescript-web-file.svg)](https://github.com/purescript-web/purescript-web-file/releases)
4+
[![Build status](https://travis-ci.org/purescript-web/purescript-web-file.svg?branch=master)](https://travis-ci.org/purescript-web/purescript-web-file)
5+
6+
Type definitions and low level interface implementations for the W3C File API.
7+
8+
## Installation
9+
10+
```
11+
bower install purescript-web-file
12+
```
13+
14+
## Documentation
15+
16+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-web-file).

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"package.json"
1616
],
1717
"dependencies": {
18-
"purescript-foreign": "#compiler/0.12",
19-
"purescript-media-types": "#compiler/0.12",
20-
"purescript-web-dom": "#compiler/0.12"
18+
"purescript-foreign": "^5.0.0",
19+
"purescript-media-types": "^4.0.0",
20+
"purescript-web-dom": "^1.0.0"
2121
}
2222
}

package.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22
"private": true,
33
"scripts": {
44
"clean": "rimraf output && rimraf .pulp-cache",
5-
"build": "eslint src && pulp build -- --censor-lib --strict",
6-
"test": "pulp test --runtime phantomjs"
5+
"build": "eslint src && pulp build -- --censor-lib --strict"
76
},
87
"devDependencies": {
9-
"eslint": "^3.19.0",
10-
"phantomjs-prebuilt": "^2.1.14",
11-
"pulp": "^11.0.0",
12-
"purescript-psa": "^0.5.0",
13-
"purescript": "^0.11.1",
14-
"rimraf": "^2.6.1"
8+
"eslint": "^4.19.1",
9+
"pulp": "^12.2.0",
10+
"purescript-psa": "^0.6.0",
11+
"rimraf": "^2.6.2"
1512
}
1613
}

0 commit comments

Comments
 (0)