From 04a4623a42e7db6ecd07e70a609448d4cc800549 Mon Sep 17 00:00:00 2001 From: James Tatum Date: Tue, 17 Feb 2015 13:00:00 -0800 Subject: [PATCH 1/2] Updating travis.yml to remove grunt dependencies The versions of grunt specified in package.json do not run on node 0.8. Grunt and its cohorts aren't required for the package itself or the test cases, so .travis.yml will remove them from package.json prior to installing dependencies and running tests. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4a83e22d6..eed9a564a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,3 +3,5 @@ node_js: - "0.11" - "0.10" - "0.8" +before_install: + - npm uninstall grunt grunt-contrib-coffee grunt-contrib-watch grunt-release grunt-shell --save-dev From d09ea70e4b384942017ced0820f48a96d1f9cbd3 Mon Sep 17 00:00:00 2001 From: James Tatum Date: Tue, 17 Feb 2015 15:58:06 -0800 Subject: [PATCH 2/2] Updating requirements - require node > 0.10.x. --- .travis.yml | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index eed9a564a..18ae2d89c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,3 @@ language: node_js node_js: - "0.11" - "0.10" - - "0.8" -before_install: - - npm uninstall grunt grunt-contrib-coffee grunt-contrib-watch grunt-release grunt-shell --save-dev diff --git a/package.json b/package.json index 5f118e568..d88bc87cd 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "mocha": "~1.13.0" }, "engines": { - "node": ">= 0.8.x", + "node": ">= 0.10.x", "npm": ">= 1.1.x" }, "scripts": {