Skip to content

Commit b81c3f1

Browse files
author
vvo
committed
chore(travis): fix travis build
1 parent 73afbe3 commit b81c3f1

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"eslint-config-algolia": "4.2.0",
8585
"eslint-plugin-react": "^3.6.3",
8686
"express": "^4.13.4",
87-
"faux-jax": "^4.2.1",
87+
"faux-jax": "^5.0.4",
8888
"http-proxy": "^1.13.3",
8989
"http-server": "^0.9.0",
9090
"jquery": "^3.0.0",
@@ -101,7 +101,7 @@
101101
"sinon": "^1.17.4",
102102
"superagent": "^2.0.0",
103103
"tape": "^4.5.1",
104-
"uglify-js": "2.6.4",
104+
"uglify-js": "^2.7.3",
105105
"url-parse": "^1.1.1",
106106
"watchify": "^3.7.0",
107107
"webpack": "^1.13.1",

zuul.config.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
var zuulConfig = module.exports = {
44
tunnel: {
5-
type: 'ngrok',
6-
bind_tls: true
5+
type: 'localtunnel'
76
},
87
ui: 'tape',
98
browserify: [{
@@ -30,6 +29,13 @@ var zuulConfig = module.exports = {
3029
browser_retries: 1
3130
};
3231

32+
if (process.env.CI === 'true') {
33+
zuulConfig.tunnel = {
34+
type: 'ngrok',
35+
bind_tls: true
36+
};
37+
}
38+
3339
var browsers = require('browzers');
3440

3541
zuulConfig.browsers = process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false' ?

0 commit comments

Comments
 (0)