From 103d8d394fc587500fc5e85606f5908139f9fb1d Mon Sep 17 00:00:00 2001 From: Benjamin Lupton Date: Thu, 19 Feb 2015 02:48:03 +0800 Subject: [PATCH] updated base files --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7c82d9c..c1985d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,15 @@ -# February 12, 2015 +# February 19, 2015 # https://github.com/bevry/base language: node_js -# install npm@1 so we can install npm@2 so we can ensure we have the latest version (can't install npm@2 directly on 0.8 as their bundled npm is too old) +# ensure npm is the latest version (ignore node versions that can't run it) # ensure coffee-script is installed (needed for cake commands) # ensure dev dependencies are installed (handled via npm install) # ensure test dependencies are installed (handled via cake install) -install: "npm install -g npm@1 && npm install -g npm@2 && npm install coffee-script && npm install && ./node_modules/.bin/cake install" +install: "npm install -g npm && npm install coffee-script && npm install && ./node_modules/.bin/cake install" # ensure our application is compiled before we run our tests before_script: "./node_modules/.bin/cake compile" script: "npm test" node_js: - - "0.8" - "0.10" - "0.12" - iojs