diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2014-05-27 23:17:41 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-05-30 10:57:34 +0200 |
commit | c31d5f06881069bae73b09c069a45b9d74c28bfe (patch) | |
tree | e782b34912a5842e0a4ed63018029d62fa411f5c /.travis.yml | |
parent | 6c4005280d5f5b49de382e7e4992c1778f541f6c (diff) | |
download | jquery-ui-c31d5f06881069bae73b09c069a45b9d74c28bfe.tar.gz jquery-ui-c31d5f06881069bae73b09c069a45b9d74c28bfe.zip |
travis: Remove node 0.8, add node 0.10
Travis is failing on two accounts:
* "Error: No compatible version found: minimatch@'^0.3.0'"
(because the version of npm that shipped with 0.8 doesn't
support ^
* npm WARN engine stringify-object@0.1.8: wanted: {"node":">=0.10.0"}
(current: {"node":"v0.8.26","npm":"1.2.30"})
npm WARN engine has-color@0.1.7: wanted: {"node":">=0.10.0"}
(current: {"node":"v0.8.26","npm":"1.2.30"})
npm WARN engine configstore@0.2.3: wanted: {"node":">=0.10.0"}
(current: {"node":"v0.8.26","npm":"1.2.30"})
npm WARN engine object-assign@0.1.2: wanted: {"node":">=0.10.0"}
(current: {"node":"v0.8.26","npm":"1.2.30"})
Closes gh-1258
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 60bbd484c..6ef04eb80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: node_js node_js: - - "0.8" + - "0.10" before_script: - - npm install -g grunt-cli
\ No newline at end of file + - npm install -g grunt-cli |