Skip to content

Commit 950703d

Browse files
authored
chore(sdk): Fixing failures with Typescript 2.4 + Travis (#1076)
* Fixing the type failure in Typescript 2.4, ListObversable is now any, rather than any[] * Use node stable on Travis * Type fixes in the specs * Ditching yarn due to the typescript problems on Travis * Closes #1072
1 parent fa926b1 commit 950703d

File tree

5 files changed

+7155
-12
lines changed

5 files changed

+7155
-12
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- '6'
4+
- 'node'
55

66
addons:
77
firefox: latest
@@ -11,16 +11,14 @@ addons:
1111
packages:
1212
- g++-4.8
1313

14-
cache:
15-
directories:
16-
- node_modules
14+
cache: npm
1715

1816
env:
1917
- CXX=g++-4.8
2018

2119
install:
22-
- npm install -g yarn
23-
- yarn install
20+
# ditched yarn, since it was acting up and giving old versions of tsc
21+
- npm install
2422

2523
before_script:
2624
- export DISPLAY=:99.0

0 commit comments

Comments
 (0)