File tree Expand file tree Collapse file tree 3 files changed +16
-15
lines changed Expand file tree Collapse file tree 3 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
3
! /.travis.yml
4
- /output /
5
- /node_modules /
6
4
/bower_components /
5
+ /node_modules /
6
+ /output /
Original file line number Diff line number Diff line change 1
1
language : node_js
2
- sudo : false
3
- node_js : 5
2
+ dist : trusty
3
+ sudo : required
4
+ node_js : 6
4
5
install :
6
+ - npm install -g bower
5
7
- npm install
6
- - npm install bower -g
7
- - bower install
8
8
script :
9
- - npm test
9
+ - bower install --production
10
+ - npm run -s build
11
+ - bower install
12
+ - npm -s test
10
13
after_success :
11
14
- >-
12
15
test $TRAVIS_TAG &&
13
- node_modules/.bin/psc-publish > .pursuit.json &&
14
- curl -X POST http://pursuit.purescript.org/packages \
15
- -d @.pursuit.json \
16
- -H 'Accept: application/json' \
17
- -H "Authorization: token ${GITHUB_TOKEN}"
16
+ echo $GITHUB_TOKEN | pulp login &&
17
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"clean" : " rimraf output && rimraf .pulp-cache" ,
5
- "build" : " pulp build" ,
5
+ "build" : " pulp build --censor-lib --strict " ,
6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
- "purescript" : " ^0.9.1-rc.1" ,
10
9
"pulp" : " ^9.0.0" ,
11
- "rimraf" : " ^2.5.2"
10
+ "purescript-psa" : " ^0.3.9" ,
11
+ "purescript" : " ^0.9.1" ,
12
+ "rimraf" : " ^2.5.0"
12
13
}
13
14
}
You can’t perform that action at this time.
0 commit comments