Skip to content

Commit

Permalink
Merge pull request #3 from purescript-node/build
Browse files Browse the repository at this point in the history
Add travis build & update readme
  • Loading branch information
garyb committed Jun 7, 2016
2 parents 52ee603 + c7ea355 commit 6841c2f
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 73 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/.*
!/.gitignore
!/.travis.yml
/bower_components/
/node_modules/
/output/
/.psci*
/src/.webpack.js
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: node_js
dist: trusty
sudo: required
node_js: 6
install:
- npm install -g bower
- npm install
- bower install
script:
- npm run -s build
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# purescript-node-url

A wrapper for Node's URL and QueryString APIs
[![Latest release](http://img.shields.io/bower/v/purescript-node-url.svg)](https://github.com/purescript-node/purescript-node-url/releases)
[![Build Status](https://travis-ci.org/purescript-node/purescript-node-url.svg?branch=master)](https://travis-ci.org/purescript-node/purescript-node-url)

- [Module Documentation](docs/)
A wrapper for Node's `URL` and `QueryString` APIs

## Usage
## Installation

bower i purescript-node-url
```
bower install purescript-node-url
```

## Documentation

Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-node-url).
67 changes: 0 additions & 67 deletions docs/Node/URL.md

This file was deleted.

13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build --censor-lib --strict"
},
"devDependencies": {
"pulp": "^9.0.0",
"purescript-psa": "^0.3.9",
"purescript": "^0.9.1",
"rimraf": "^2.5.0"
}
}

0 comments on commit 6841c2f

Please sign in to comment.