Skip to content

Commit

Permalink
feat: remove support for node 0.8 and lower. update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Apr 18, 2014
1 parent dc4194e commit db87d68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,6 +1,5 @@
language: node_js
node_js:
- '0.8'
- '0.10'
before_install:
- npm update -g npm
7 changes: 3 additions & 4 deletions README.md
@@ -1,6 +1,6 @@
# gulp-nar [![Build Status](https://travis-ci.org/h2non/gulp-nar.svg?branch=master)][travis] [![Dependency Status](https://gemnasium.com/h2non/gulp-nar.png)][gemnasium] [![NPM version](https://badge.fury.io/js/gulp-nar.png)][npm]

> Create [nar](https://github.com/h2non/nar) archives from [Gulp](http://gulpjs.com)
> Create and extract [nar](https://github.com/h2non/nar) archives from [Gulp](http://gulpjs.com)
## Install

Expand Down Expand Up @@ -29,9 +29,8 @@ See [gulpfile.js][example] for more example
`options` archive creation [options](https://github.com/h2non/nar#narcreateoptions)

### nar.extract(path, options)
`path` Destination directory for the output tar archive
`options` archive creation [options](https://github.com/h2non/nar#narcreateoptions)

`path` Destination directory for the extracted files
`options` archive creation [options](https://github.com/h2non/nar#narextractoptions)

## License

Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,19 +1,19 @@
{
"name": "gulp-nar",
"version": "0.1.0",
"description": "Create nar archives",
"description": "Create and extract nar archives",
"license": "MIT",
"repository": "h2non/nar",
"author": {
"name": "Tomas Aparicio",
"url": "http://tomas.aparicio.me"
},
"engines": {
"node": ">=0.8.0"
"node": ">= 0.10.0"
},
"scripts": {
"pretest": "rm -rf .tmp",
"test": "mocha --reporter spec --ui tdd --timeout 5000"
"test": "mocha --reporter spec --ui tdd --timeout 10000"
},
"files": [
"index.js"
Expand Down

0 comments on commit db87d68

Please sign in to comment.