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
5 changes: 5 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"preset": "grunt",
"disallowSpacesInFunctionExpression": null,
"requireSpacesInFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"disallowSpacesInAnonymousFunctionExpression": null,
"requireSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true,
Expand Down
3 changes: 1 addition & 2 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
"freeze": true,
"funcscope": true,
"futurehostile": true,
"globalstrict": true,
"strict": "global",
"latedef": true,
"maxparams": 1,
"noarg": true,
"nocomma": true,
"nonew": true,
Expand Down
17 changes: 12 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: node_js
sudo: false
node_js:
- 4
- 6
dist: trusty
sudo: required
node_js: 6
env:
- PATH=$HOME/purescript:$PATH
install:
Expand All @@ -13,4 +12,12 @@ install:
- npm install -g bower
- npm install
script:
- npm run build
- bower install --production
- npm run -s build
- bower install
- npm test
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Latest release](http://img.shields.io/bower/v/purescript-node-path.svg)](https://github.com/purescript-node/purescript-node-path/releases)
[![Build Status](https://travis-ci.org/purescript-node/purescript-node-path.svg?branch=master)](https://travis-ci.org/purescript-node/purescript-node-path)
[![Dependency Status](https://www.versioneye.com/user/projects/5759d0757757a0004a1de996/badge.svg?style=flat)](https://www.versioneye.com/user/projects/5759d0757757a0004a1de996)
[![Maintainer: garyb](https://img.shields.io/badge/maintainer-garyb-lightgrey.svg)](http://github.com/garyb)

Type type definitions for Node's path module.
Expand All @@ -12,6 +13,6 @@ Type type definitions for Node's path module.
bower install purescript-node-path
```

## Module documentation
## Documentation

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

This file was deleted.

16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "jshint src && jscs src && pulp build --censor-lib --strict",
"test": "pulp test"
},
"devDependencies": {
"jscs": "^2.8.0",
"jshint": "^2.9.1",
"pulp": "^9.0.0",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"rimraf": "^2.3.3"
},
"scripts": {
"build": "jshint src && jscs src && pulp build && rimraf docs && pulp docs",
"postinstall": "bower install"
"purescript-psa": "^0.3.8",
"rimraf": "^2.5.0"
}
}