소스 검색

travis: try to fix npm problems with node 0.8

... by installing latest npm by hand
Herbert Vojčík 9 년 전
부모
커밋
afe9570d3a
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 1
      .travis.yml
  2. 1 1
      package.json

+ 3 - 1
.travis.yml

@@ -1,7 +1,9 @@
 language: node_js
 node_js:
-#  - "0.8" # has npm problems
+  - "0.8"
   - "0.10"
+before_install:
+  - npm -g install npm@1.x.x
 install:
   - npm install -g grunt-cli
   - npm install

+ 1 - 1
package.json

@@ -23,7 +23,7 @@
     "url": "git://github.com/amber-smalltalk/amber.git"
   },
   "engines": {
-    "node": ">=0.10.0"
+    "node": ">=0.8.0"
   },
   "scripts": {
     "test": "grunt test"