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