This repository was archived by the owner on Jun 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +24
-241
lines changed Expand file tree Collapse file tree 7 files changed +24
-241
lines changed Original file line number Diff line number Diff line change 11{
22 "preset" : " grunt" ,
3+ "disallowSpacesInFunctionExpression" : null ,
4+ "requireSpacesInFunctionExpression" : {
5+ "beforeOpeningRoundBrace" : true ,
6+ "beforeOpeningCurlyBrace" : true
7+ },
38 "disallowSpacesInAnonymousFunctionExpression" : null ,
49 "requireSpacesInAnonymousFunctionExpression" : {
510 "beforeOpeningRoundBrace" : true ,
Original file line number Diff line number Diff line change 55 "freeze" : true ,
66 "funcscope" : true ,
77 "futurehostile" : true ,
8- "globalstrict " : true ,
8+ "strict " : " global " ,
99 "latedef" : true ,
1010 "maxparams" : 1 ,
1111 "noarg" : true ,
Original file line number Diff line number Diff line change 11language : node_js
22sudo : false
33node_js :
4- - 0.10
4+ - 5
55env :
66 - PATH=$HOME/purescript:$PATH
77install :
88 - 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')
99 - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
1010 - tar -xvf $HOME/purescript.tar.gz -C $HOME/
1111 - chmod a+x $HOME/purescript
12+ - npm install -g bower
1213 - npm install
1314script :
1415 - npm run build
16+ after_success :
17+ - >-
18+ test $TRAVIS_TAG &&
19+ psc-publish > .pursuit.json &&
20+ curl -X POST http://pursuit.purescript.org/packages \
21+ -d @.pursuit.json \
22+ -H 'Accept: application/json' \
23+ -H "Authorization: token ${GITHUB_TOKEN}"
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ Standard math functions from JavaScript.
1111bower install purescript-math
1212```
1313
14- ## Module documentation
14+ ## Documentation
1515
16- - [ Math ] ( docs/Math.md )
16+ Module documentation is [ published on Pursuit ] ( http://pursuit.purescript.org/packages/purescript-math ) .
Original file line number Diff line number Diff line change 22 "name" : " purescript-math" ,
33 "homepage" : " https://github.com/purescript/purescript-math" ,
44 "description" : " Math functions" ,
5- "keywords" : [
6- " purescript"
7- ],
85 "license" : " MIT" ,
96 "repository" : {
107 "type" : " git" ,
1714 " output" ,
1815 " test" ,
1916 " bower.json" ,
20- " gulpfile.js" ,
2117 " package.json"
2218 ]
2319}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "postinstall" : " pulp dep install" ,
5- "build" : " jshint src && jscs src && pulp build && rimraf docs && pulp docs"
5+ "clean" : " rimraf output && rimraf .pulp-cache" ,
6+ "build" : " jshint src && jscs src && pulp build"
67 },
78 "devDependencies" : {
8- "jscs" : " ^1.13.1 " ,
9- "jshint" : " ^2.8.0 " ,
10- "pulp" : " ^4 .0.2 " ,
11- "rimraf" : " ^2.4.1 "
9+ "jscs" : " ^2.8.0 " ,
10+ "jshint" : " ^2.9.1 " ,
11+ "pulp" : " ^7 .0.0 " ,
12+ "rimraf" : " ^2.5.0 "
1213 }
1314}
You can’t perform that action at this time.
0 commit comments