mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-25 16:07:37 +00:00
Merge pull request #368 from shelljs/drop-v0.10-support
chore: drop node v0.10 support
This commit is contained in:
commit
04b0472201
10
.travis.yml
10
.travis.yml
@ -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
|
||||
|
||||
@ -4,7 +4,12 @@
|
||||
[](http://travis-ci.org/shelljs/shelljs)
|
||||
[](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:
|
||||
|
||||
|
||||
@ -37,6 +37,7 @@
|
||||
},
|
||||
"optionalDependencies": {},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
"node": ">=0.11.0",
|
||||
"iojs": "*"
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user