Skip to content
This repository has been archived by the owner on Jan 15, 2020. It is now read-only.

io.js 3 / node 4 / nan 2.1 support (DONE) #41

Merged
merged 8 commits into from
Oct 10, 2015
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
*.node
src/build
src/.lock-wscript
Expand Down
40 changes: 34 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
language: "node_js"
node_js:
- '0.8'
- '0.10'
- '0.11'
script: node test/test.js
os:
- linux
- osx
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
matrix:
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="2"
- TRAVIS_NODE_VERSION="4"

install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
- $CXX --version
- PATH="`npm bin`:`npm bin -g`:$PATH"
# Node 0.8 comes with a too obsolete npm
- if [[ "`node --version`" =~ ^v0\.8\. ]]; then npm install -g npm@1.4.28 ; fi
# Install dependencies and build
- npm install

script:
# Output useful info for debugging
- node --version
- npm --version
# Run tests
- node test/test.js
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@
"interceptor",
"proxy",
"overload",
"__noSuchMethod__"
"__noSuchMethod__",
"es6"
],
"dependencies": {
"bindings": "1.1.x",
"nan": "^1.7.0"
"bindings": "1",
"nan": "^2.1.0"
},
"contributors": [
"Sam Shull <http://www.google.com/profiles/brickysam26>",
"richardms <https://github.com/richardms>",
"Andreas Botsikas <http://webinos.org/bio-andreas-botsikas/>",
"Kenneth Bentley <mechanicofthesequence@gmail.com>"
"Kenneth Bentley <mechanicofthesequence@gmail.com>",
"Gabor Mezo <https://github.com/unbornchikken>"
],
"licenses": [
{
Expand Down
Loading