Skip to content

Commit

Permalink
Merge pull request #77 from bcomnes/old-node
Browse files Browse the repository at this point in the history
Extend support back to 0.8
  • Loading branch information
bcomnes committed Jan 6, 2018
2 parents 9a9cf1c + a4618a0 commit 24624a5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
17 changes: 13 additions & 4 deletions .travis.yml
@@ -1,6 +1,15 @@
language: node_js
node_js:
- 9
- 8
- 6
- 4
- "9"
- "8"
- "6"
- "4"
- "iojs"
- "0.12"
- "0.10"
- "0.8"
sudo: false
before_install:
- 'nvm install-latest-npm'
matrix:
fast_finish: true
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
* Extend support back to 0.8

## 5.0.1 - 2018-01-02
* Add engines field set to `>=4.0.0`.

Expand Down
2 changes: 1 addition & 1 deletion index.js
@@ -1,4 +1,4 @@
var acorn = require('acorn5-object-spread/inject')(require('acorn'));
var acorn = require('@browserify/acorn5-object-spread/inject')(require('acorn'));
var walk = require('acorn/dist/walk');
var defined = require('defined');

Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -9,14 +9,14 @@
},
"dependencies": {
"acorn": "^5.2.1",
"acorn5-object-spread": "^5.0.0",
"@browserify/acorn5-object-spread": "^5.0.1",
"defined": "^1.0.0"
},
"devDependencies": {
"tap": "^10.7.3"
},
"engines": {
"node": ">=4.0.0"
"node": ">=0.8.0"
},
"keywords": [
"analyze",
Expand Down

0 comments on commit 24624a5

Please sign in to comment.