File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ before_install:
18
18
before_script :
19
19
- npm prune
20
20
script :
21
- - npm run test
21
+ - npm run coverage
22
22
- npm run build
23
23
after_success :
24
24
- ' curl -Lo travis_after_all.py https://git.io/travis_after_all'
25
25
- python travis_after_all.py
26
26
- export $(cat .to_export_back) &> /dev/null
27
- - (cd coverage && bash <(curl -s https://codecov.io/bash) )
27
+ - bash <(curl -s https://codecov.io/bash)
28
28
- npm run semantic-release
29
29
branches :
30
30
only :
Original file line number Diff line number Diff line change 61
61
"build-cjs" : " rimraf lib && babel src --ignore __tests__,__mocks__ -d lib" ,
62
62
"build-es" : " rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es" ,
63
63
"build-flow" : " find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\ /src\\ //\\ /lib\\ //g'`.flow; done" ,
64
- "cover " : " nyc npm t " ,
64
+ "coverage " : " nyc npm run test " ,
65
65
"lint" : " eslint src test *.js" ,
66
66
"test" : " babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js" ,
67
67
"watch" : " babel-node ./resources/watch.js" ,
You can’t perform that action at this time.
0 commit comments