File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ var webpackConfig = {
1919 __WEEX__ : false ,
2020 'process.env' : {
2121 NODE_ENV : '"development"' ,
22- TRANSITION_DURATION : process . env . SAUCE ? 200 : 50 ,
23- TRANSITION_BUFFER : process . env . SAUCE ? 30 : 10
22+ TRANSITION_DURATION : process . env . SAUCE ? 500 : 50 ,
23+ TRANSITION_BUFFER : process . env . SAUCE ? 50 : 10
2424 }
2525 } )
2626 ] ,
Original file line number Diff line number Diff line change @@ -11,14 +11,17 @@ read -p "Releasing $VERSION - are you sure? (y/n) " -n 1 -r
1111echo
1212if [[ $REPLY =~ ^[Yy]$ ]]; then
1313 echo " Releasing $VERSION ..."
14- export SAUCE_BUILD_ID=$VERSION :` date +" %s" `
1514
1615 npm run lint
1716 npm run flow
1817 npm run test:cover
1918 npm run test:e2e
2019 npm run test:ssr
21- npm run test:sauce
20+
21+ if [[ -z $SKIP_SAUCE ]]; then
22+ export SAUCE_BUILD_ID=$VERSION :` date +" %s" `
23+ npm run test:sauce
24+ fi
2225
2326 # build
2427 VERSION=$VERSION npm run build
You can’t perform that action at this time.
0 commit comments