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 = {
19
19
__WEEX__ : false ,
20
20
'process.env' : {
21
21
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
24
24
}
25
25
} )
26
26
] ,
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
11
11
echo
12
12
if [[ $REPLY =~ ^[Yy]$ ]]; then
13
13
echo " Releasing $VERSION ..."
14
- export SAUCE_BUILD_ID=$VERSION :` date +" %s" `
15
14
16
15
npm run lint
17
16
npm run flow
18
17
npm run test:cover
19
18
npm run test:e2e
20
19
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
22
25
23
26
# build
24
27
VERSION=$VERSION npm run build
You can’t perform that action at this time.
0 commit comments