Skip to content

Commit 23a30da

Browse files
authored
Merge pull request #5 from purescript-node/updates
Update dependencies & build
2 parents 366a17e + aee3bf0 commit 23a30da

File tree

8 files changed

+45
-284
lines changed

8 files changed

+45
-284
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
/.*
2+
!/.gitignore
3+
!/.travis.yml
14
/bower_components/
25
/node_modules/
3-
/.pulp-cache/
46
/output/
5-
/.psci*
6-
/src/.webpack.js

.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: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# purescript-node-process
22

3-
Access the Node.js global `process` object in PurScript.
3+
[![Latest release](http://img.shields.io/bower/v/purescript-node-process.svg)](https://github.com/purescript/purescript-node-process/releases)
4+
[![Build Status](https://travis-ci.org/purescript/purescript-node-process.svg?branch=master)](https://travis-ci.org/purescript/purescript-node-process)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/579e4539aa78d500469f9e72/badge.svg?style=flat)](https://www.versioneye.com/user/projects/579e4539aa78d500469f9e72)
46

5-
- [Module Documentation](docs/)
7+
The Node.js global `process` object in PureScript.
8+
9+
## Installation
10+
11+
```
12+
bower install purescript-node-process
13+
```
14+
15+
## Documentation
16+
17+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-node-process).

bower.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"name": "purescript-node-process",
3-
"moduleType": [
4-
"node"
5-
],
63
"repository": {
74
"type": "git",
85
"url": "git://github.com/purescript-node/purescript-node-process"
@@ -17,9 +14,9 @@
1714
"dependencies": {
1815
"purescript-console": "^1.0.0",
1916
"purescript-exceptions": "^1.0.0",
20-
"purescript-maps": "^1.0.0",
17+
"purescript-maps": "^1.1.0",
2118
"purescript-maybe": "^1.0.0",
22-
"purescript-node-fs": "^1.0.0",
19+
"purescript-node-fs": "^2.0.0",
2320
"purescript-node-streams": "^1.0.0",
2421
"purescript-posix-types": "^1.0.0",
2522
"purescript-unsafe-coerce": "^1.0.0",

docs/Node/Globals.md

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

docs/Node/Platform.md

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

docs/Node/Process.md

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"private": true,
33
"scripts": {
4-
"postinstall": "pulp dep install",
5-
"build": "jshint src && pulp build && rimraf docs && pulp docs"
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "pulp build --censor-lib --strict"
66
},
77
"devDependencies": {
8-
"jshint": "^2.8.0",
9-
"pulp": "^5.0.2",
10-
"rimraf": "^2.4.4"
8+
"pulp": "^9.0.1",
9+
"purescript-psa": "^0.3.9",
10+
"rimraf": "^2.5.0"
1111
}
1212
}

0 commit comments

Comments
 (0)