Skip to content

Commit fcaf323

Browse files
committed
Update dependencies
1 parent 8a4e5ed commit fcaf323

File tree

5 files changed

+38
-19
lines changed

5 files changed

+38
-19
lines changed

.gitignore

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1+
/.*
2+
!/.gitignore
3+
!/.eslintrc.json
4+
!/.travis.yml
5+
package-lock.json
16
/bower_components/
27
/node_modules/
3-
/.pulp-cache/
48
/output/
5-
/.psc*
6-
/.psa*
7-
/.purs*
8-
/.vscode
9-
/package-lock.json

.travis.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@ language: node_js
22
dist: trusty
33
sudo: required
44
node_js: stable
5+
env:
6+
- PATH=$HOME/purescript:$PATH
57
install:
6-
- npm 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
712
- npm install -g bower
8-
- bower install --production
13+
- npm install
914
script:
15+
- bower install
1016
- npm run -s build
1117
after_success:
1218
- >-
1319
test $TRAVIS_TAG &&
1420
echo $GITHUB_TOKEN | pulp login &&
15-
echo y | pulp publish --no-push ||
16-
git status
21+
echo y | pulp publish --no-push

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
# purescript-web-xhr
22

3-
Low-level bindings for `XMLHttpRequest`.
3+
[![Latest release](http://img.shields.io/github/release/purescript-web/purescript-web-xhr.svg)](https://github.com/purescript-web/purescript-web-xhr/releases)
4+
[![Build status](https://travis-ci.org/purescript-web/purescript-web-xhr.svg?branch=master)](https://travis-ci.org/purescript-web/purescript-web-xhr)
5+
6+
Type definitions and low level interface implementations for the W3C XmlHttpRequest API.
7+
8+
## Installation
9+
10+
```
11+
bower install purescript-web-xhr
12+
```
13+
14+
## Documentation
15+
16+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-web-xhr).

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
],
1818
"dependencies": {
1919
"purescript-arraybuffer-types": "^2.0.0",
20-
"purescript-datetime": "#compiler/0.12",
21-
"purescript-http-methods": "#compiler/0.12",
22-
"purescript-web-dom": "#compiler/0.12",
23-
"purescript-web-file": "#compiler/0.12"
20+
"purescript-datetime": "^1.0.0",
21+
"purescript-http-methods": "^1.0.0",
22+
"purescript-web-dom": "^1.0.0",
23+
"purescript-web-file": "^1.0.0"
2424
}
2525
}

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "pulp build -- --strict --censor-lib"
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "eslint src && pulp build -- --censor-lib --strict"
56
},
67
"devDependencies": {
7-
"pulp": "^12.0.0",
8-
"purescript": "^0.11.6",
9-
"purescript-psa": "^0.5.0"
8+
"eslint": "^4.19.1",
9+
"pulp": "^12.2.0",
10+
"purescript-psa": "^0.6.0",
11+
"rimraf": "^2.6.2"
1012
}
1113
}

0 commit comments

Comments
 (0)