File tree Expand file tree Collapse file tree 4 files changed +35
-29
lines changed Expand file tree Collapse file tree 4 files changed +35
-29
lines changed Original file line number Diff line number Diff line change 1+ /. *
2+ ! /.gitignore
3+ ! /.travis.yml
14/bower_components /
25/node_modules /
3- /.pulp-cache /
46/output /
5- /.psci *
6- /src /.webpack.js
7- . *
Original file line number Diff line number Diff line change 11language : node_js
2- sudo : false
3- node_js :
4- - 5.5
5- env :
6- - PSC_VERSION=0.9.1
2+ dist : trusty
3+ sudo : required
4+ node_js : 6
75install :
8- - npm install purescript@${PSC_VERSION} pulp bower -g
9- - bower update
6+ - npm install -g bower
7+ - npm install
8+ - bower install
109script :
11- - pulp build
12-
10+ - npm run -s build
1311after_success :
14- - >-
15- test $TRAVIS_TAG &&
16- psc-publish > .pursuit.json &&
17- curl -X POST https://pursuit.purescript.org/packages \
18- -d @.pursuit.json \
19- -H 'Accept: application/json' \
20- -H "Authorization: token ${GITHUB_TOKEN}"
12+ - >-
13+ test $TRAVIS_TAG &&
14+ echo $GITHUB_TOKEN | pulp login &&
15+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 11{
22 "name" : " purescript-form-urlencoded" ,
33 "license" : " BSD-3-Clause" ,
4- "moduleType" : [
5- " node"
6- ],
4+ "repository" : {
5+ "type" : " git" ,
6+ "url" : " git://github.com/purescript-contrib/purescript-form-urlencoded.git"
7+ },
78 "ignore" : [
89 " **/.*" ,
9- " node_modules" ,
1010 " bower_components" ,
11- " output"
11+ " node_modules" ,
12+ " output" ,
13+ " bower.json" ,
14+ " package.json"
1215 ],
1316 "dependencies" : {
1417 "purescript-prelude" : " ^1.0.1" ,
1720 "purescript-maybe" : " ^1.0.0" ,
1821 "purescript-strings" : " ^1.0.0" ,
1922 "purescript-tuples" : " ^1.0.0"
20- },
21- "repository" : {
22- "type" : " git" ,
23- "url" : " git://github.com/purescript-contrib/purescript-form-urlencoded.git"
2423 }
2524}
Original file line number Diff line number Diff line change 1+ {
2+ "private" : true ,
3+ "scripts" : {
4+ "clean" : " rimraf output && rimraf .pulp-cache" ,
5+ "build" : " pulp build --censor-lib --strict"
6+ },
7+ "devDependencies" : {
8+ "pulp" : " ^9.0.0" ,
9+ "purescript-psa" : " ^0.3.9" ,
10+ "purescript" : " ^0.9.1" ,
11+ "rimraf" : " ^2.5.0"
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments