Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/.*
!/.gitignore
!/.travis.yml
/bower_components/
/node_modules/
/.pulp-cache/
/output/
/.psci*
/src/.webpack.js
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: node_js
dist: trusty
sudo: required
node_js: 6
env:
- PATH=$HOME/purescript:$PATH
install:
- 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')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
- bower install
script:
- npm run -s build
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# purescript-node-process

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

- [Module Documentation](docs/)
The Node.js global `process` object in PureScript.

## Installation

```
bower install purescript-node-process
```

## Documentation

Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-node-process).
7 changes: 2 additions & 5 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"name": "purescript-node-process",
"moduleType": [
"node"
],
"repository": {
"type": "git",
"url": "git://github.com/purescript-node/purescript-node-process"
Expand All @@ -17,9 +14,9 @@
"dependencies": {
"purescript-console": "^1.0.0",
"purescript-exceptions": "^1.0.0",
"purescript-maps": "^1.0.0",
"purescript-maps": "^1.1.0",
"purescript-maybe": "^1.0.0",
"purescript-node-fs": "^1.0.0",
"purescript-node-fs": "^2.0.0",
"purescript-node-streams": "^1.0.0",
"purescript-posix-types": "^1.0.0",
"purescript-unsafe-coerce": "^1.0.0",
Expand Down
47 changes: 0 additions & 47 deletions docs/Node/Globals.md

This file was deleted.

38 changes: 0 additions & 38 deletions docs/Node/Platform.md

This file was deleted.

184 changes: 0 additions & 184 deletions docs/Node/Process.md

This file was deleted.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"private": true,
"scripts": {
"postinstall": "pulp dep install",
"build": "jshint src && pulp build && rimraf docs && pulp docs"
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build --censor-lib --strict"
},
"devDependencies": {
"jshint": "^2.8.0",
"pulp": "^5.0.2",
"rimraf": "^2.4.4"
"pulp": "^9.0.1",
"purescript-psa": "^0.3.9",
"rimraf": "^2.5.0"
}
}