File tree Expand file tree Collapse file tree 5 files changed +38
-19
lines changed
Expand file tree Collapse file tree 5 files changed +38
-19
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -2,15 +2,20 @@ language: node_js
22dist : trusty
33sudo : required
44node_js : stable
5+ env :
6+ - PATH=$HOME/purescript:$PATH
57install :
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
914script :
15+ - bower install
1016 - npm run -s build
1117after_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
Original file line number Diff line number Diff line change 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 ) .
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments