File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 84
84
"eslint-config-algolia" : " 4.2.0" ,
85
85
"eslint-plugin-react" : " ^3.6.3" ,
86
86
"express" : " ^4.13.4" ,
87
- "faux-jax" : " ^4.2.1 " ,
87
+ "faux-jax" : " ^5.0.4 " ,
88
88
"http-proxy" : " ^1.13.3" ,
89
89
"http-server" : " ^0.9.0" ,
90
90
"jquery" : " ^3.0.0" ,
101
101
"sinon" : " ^1.17.4" ,
102
102
"superagent" : " ^2.0.0" ,
103
103
"tape" : " ^4.5.1" ,
104
- "uglify-js" : " 2.6.4 " ,
104
+ "uglify-js" : " ^2.7.3 " ,
105
105
"url-parse" : " ^1.1.1" ,
106
106
"watchify" : " ^3.7.0" ,
107
107
"webpack" : " ^1.13.1" ,
Original file line number Diff line number Diff line change 2
2
3
3
var zuulConfig = module . exports = {
4
4
tunnel : {
5
- type : 'ngrok' ,
6
- bind_tls : true
5
+ type : 'localtunnel'
7
6
} ,
8
7
ui : 'tape' ,
9
8
browserify : [ {
@@ -30,6 +29,13 @@ var zuulConfig = module.exports = {
30
29
browser_retries : 1
31
30
} ;
32
31
32
+ if ( process . env . CI === 'true' ) {
33
+ zuulConfig . tunnel = {
34
+ type : 'ngrok' ,
35
+ bind_tls : true
36
+ } ;
37
+ }
38
+
33
39
var browsers = require ( 'browzers' ) ;
34
40
35
41
zuulConfig . browsers = process . env . TRAVIS_PULL_REQUEST && process . env . TRAVIS_PULL_REQUEST !== 'false' ?
You can’t perform that action at this time.
0 commit comments