Skip to content

Commit aa21be9

Browse files
committed
Update build, Pursuit auto-publishing
1 parent 4ac7859 commit aa21be9

File tree

8 files changed

+26
-368
lines changed

8 files changed

+26
-368
lines changed

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
/.*
22
!/.gitignore
33
!/.travis.yml
4-
bower_components/
5-
node_modules/
6-
output/
7-
dist/
8-
npm-debug.log
4+
/bower_components/
5+
/node_modules/
6+
/output/

.travis.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- 0.10
4+
- 4
55
install:
6-
- npm install bower gulp -g
76
- npm install
8-
- bower install --production
97
script:
10-
- gulp make
11-
- bower install
12-
- gulp test
8+
- npm test
9+
after_success:
10+
- >-
11+
test $TRAVIS_TAG &&
12+
npm install bower -g &&
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}"

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Core part of `purescript-argonaut` that contains basic types for `Json`, folds o
1313
bower install purescript-argonaut-core
1414
```
1515

16-
## Module documentation
16+
## Documentation
1717

18-
- [Data.Argonaut.Core](docs/Data/Argonaut/Core.md)
19-
- [Data.Argonaut.Parser](docs/Data/Argonaut/Parser.md)
20-
- [Data.Argonaut.Printer](docs/Data/Argonaut/Printer.md)
18+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-argonaut-core).

docs/Data/Argonaut/Core.md

Lines changed: 0 additions & 263 deletions
This file was deleted.

docs/Data/Argonaut/Parser.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/Data/Argonaut/Printer.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

gulpfile.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)