Skip to content

Commit e72a5b4

Browse files
committed
Merge pull request #5 from garyb/pursuit-build
Update build & auto publish to pursuit
2 parents 3554b3b + fa50244 commit e72a5b4

File tree

5 files changed

+21
-90
lines changed

5 files changed

+21
-90
lines changed

.travis.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
language: node_js
22
node_js:
3-
- 0.12.7
3+
- 5
44
install:
5-
- npm install gulp bower -g
5+
- npm install bower -g
66
- npm install
7-
- bower install
87
script:
9-
- gulp
8+
- npm test
9+
after_success:
10+
- >-
11+
test $TRAVIS_TAG &&
12+
./node_modules/.bin/psc-publish > .pursuit.json &&
13+
curl -X POST http://pursuit.purescript.org/packages \
14+
-d @.pursuit.json \
15+
-H 'Accept: application/json' \
16+
-H "Authorization: token ${GITHUB_TOKEN}"

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# purescript-halogen-css
22

3+
[![Latest release](http://img.shields.io/bower/v/purescript-halogen-css.svg)](https://github.com/slamdata/purescript-halogen-css/releases)
34
[![Build Status](https://travis-ci.org/slamdata/purescript-halogen-css.svg?branch=master)](https://travis-ci.org/slamdata/purescript-halogen-css)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/56796dd0a7c90e002c00006d/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56796dd0a7c90e002c00006d)
46

57
An adapter between the `purescript-halogen` and `purescript-css` libraries.
68

7-
## Module documentation
9+
## Documentation
810

9-
- [Halogen.HTML.CSS](docs/Halogen/HTML/CSS.md)
11+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-halogen-css).

docs/Halogen/HTML/CSS.md

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

gulpfile.js

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

package.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
2-
"name": "purescript-halogen-css",
32
"private": true,
4-
"license": "Apache-2.0",
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"test": "pulp build"
6+
},
57
"devDependencies": {
6-
"gulp": "^3.8.11",
7-
"gulp-jscs": "^1.6.0",
8-
"gulp-jshint": "^1.11.2",
9-
"gulp-purescript": "^0.7.0",
10-
"purescript": "^0.7.6",
11-
"rimraf": "^2.4.1"
8+
"pulp": "^6.0.0",
9+
"purescript": "^0.7.6"
1210
}
1311
}

0 commit comments

Comments
 (0)