Merge pull request #368 from shelljs/drop-v0.10-support

chore: drop node v0.10 support
This commit is contained in:
Nate Fischer 2016-02-24 12:23:32 -08:00
commit 04b0472201
3 changed files with 18 additions and 2 deletions

View File

@ -2,10 +2,18 @@ language: c++
sudo: false
env:
- NODE_VERSION="0.10"
- NODE_VERSION="0.11"
- NODE_VERSION="0.12"
- NODE_VERSION="iojs-v1"
- NODE_VERSION="iojs-v2"
- NODE_VERSION="iojs-v3"
- NODE_VERSION="4"
- NODE_VERSION="5"
matrix:
allow_failures:
- NODE_VERSION="0.10"
# keep this blank to make sure there are no before_install steps
before_install:
@ -21,11 +29,13 @@ os:
- osx
script:
- npm test
# make sure when the docs are generated nothing changes (a.k.a. the docs have already been generated)
- node scripts/generate-docs.js
- git diff --quiet # make sure no files have changed
# Gitter
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/743dc6b83b6dd05111ee

View File

@ -4,7 +4,12 @@
[![Build Status](https://travis-ci.org/shelljs/shelljs.svg?branch=master)](http://travis-ci.org/shelljs/shelljs)
[![Build status](https://ci.appveyor.com/api/projects/status/42txr0s3ux5wbumv/branch/master?svg=true)](https://ci.appveyor.com/project/shelljs/shelljs)
ShellJS is a portable **(Windows/Linux/OS X)** implementation of Unix shell commands on top of the Node.js API. You can use it to eliminate your shell script's dependency on Unix while still keeping its familiar and powerful commands. You can also install it globally so you can run it from outside Node projects - say goodbye to those gnarly Bash scripts!
ShellJS is a portable **(Windows/Linux/OS X)** implementation of Unix shell commands on top of the
Node.js API. You can use it to eliminate your shell script's dependency on Unix while still keeping
its familiar and powerful commands. You can also install it globally so you can run it from outside
Node projects - say goodbye to those gnarly Bash scripts!
ShellJS supports node `v0.11`, `v0.12`, `v4`, `v5`, and all releases of iojs.
The project is [unit-tested](http://travis-ci.org/shelljs/shelljs) and battled-tested in projects like:

View File

@ -37,6 +37,7 @@
},
"optionalDependencies": {},
"engines": {
"node": ">=0.10.0"
"node": ">=0.11.0",
"iojs": "*"
}
}