Skip to content

Commit 729501f

Browse files
authored
Merge pull request #5 from purescript-node/updates
Update dependencies & add build
2 parents 13b9b4d + ce777fa commit 729501f

File tree

5 files changed

+48
-10
lines changed

5 files changed

+48
-10
lines changed

.gitignore

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

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: node_js
2+
dist: trusty
3+
sudo: required
4+
node_js: 6
5+
env:
6+
- PATH=$HOME/purescript:$PATH
7+
install:
8+
- 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')
9+
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10+
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11+
- chmod a+x $HOME/purescript
12+
- npm install -g bower
13+
- npm install
14+
- bower install
15+
script:
16+
- npm run -s build
17+
after_success:
18+
- >-
19+
test $TRAVIS_TAG &&
20+
echo $GITHUB_TOKEN | pulp login &&
21+
echo y | pulp publish --no-push

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# purescript-node-child-process
22

3+
[![Latest release](http://img.shields.io/bower/v/purescript-node-child-process.svg)](https://github.com/purescript/purescript-node-child-process/releases)
4+
[![Build Status](https://travis-ci.org/purescript/purescript-node-child-process.svg?branch=master)](https://travis-ci.org/purescript/purescript-node-child-process)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/579e4755aa78d50051183eec/badge.svg?style=flat)](https://www.versioneye.com/user/projects/579e4755aa78d50051183eec)
6+
37
Bindings to Node's `child_process` API.
48

5-
Documentation is [on Pursuit](http://pursuit.purescript.org/packages/purescript-node-child-process).
9+
## Installation
10+
11+
```
12+
bower install purescript-node-child-process
13+
```
14+
15+
## Documentation
16+
17+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-node-child-process).

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"purescript-exceptions": "^1.0.0",
1111
"purescript-foreign": "^1.0.0",
1212
"purescript-functions": "^1.0.0",
13-
"purescript-maps": "^1.0.0",
14-
"purescript-node-fs": "^1.0.0",
13+
"purescript-maps": "^1.1.0",
14+
"purescript-node-fs": "^2.0.0",
1515
"purescript-node-streams": "^1.0.0",
16-
"purescript-nullable": "^1.0.0",
16+
"purescript-nullable": "^1.0.1",
1717
"purescript-posix-types": "^1.0.0",
1818
"purescript-unsafe-coerce": "^1.0.0"
1919
},

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"private": true,
3+
"scripts": {
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "pulp build --censor-lib --strict"
6+
},
37
"devDependencies": {
4-
"pulp": "^6.0.0"
8+
"pulp": "^9.0.1",
9+
"purescript-psa": "^0.3.9",
10+
"rimraf": "^2.5.4"
511
}
612
}

0 commit comments

Comments
 (0)