This repository was archived by the owner on Nov 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 11language : node_js
22node_js :
33 - " 4.2.0"
4- after_success : npm run coverage
4+ after_success : ' npm run coverage'
Original file line number Diff line number Diff line change 1313 " index.js.map"
1414 ],
1515 "scripts" : {
16- "start" : " npm run test:watch " ,
16+ "start" : " npm test" ,
1717 "clean" : " rm -f index.js index.js.map tests/*.js tests/*.js.map" ,
1818 "prebuild" : " npm run clean" ,
1919 "build" : " tsc --sourceMap" ,
20- "pretest " : " tsc --inlineSourceMap" ,
21- "test " : " mocha --compilers js:babel-register 'tests/**/*-test.js' " ,
22- "test:watch " : " chokidar --initial \" index.ts \" -c \" npm run test -- --watch \" " ,
23- "coverage" : " nyc npm test && nyc report --reporter=text- lcov | coveralls" ,
20+ "build:inline " : " tsc --inlineSourceMap" ,
21+ "pretest " : " npm run clean && npm run build:inline " ,
22+ "test" : " nyc --reporter lcov ./node_modules/.bin/mocha --recursive tests --all " ,
23+ "coverage" : " cat ./coverage/ lcov.info | ./node_modules/.bin/ coveralls" ,
2424 "changelog" : " conventional-changelog -p angular -i CHANGELOG.md -w" ,
2525 "preversion" : " npm test" ,
2626 "version" : " npm run build && conventional-changelog -p angular -v -r 0 > CHANGELOG.md && git add -A ." ,
6363 "commitizen" : {
6464 "path" : " ./node_modules/cz-conventional-changelog"
6565 }
66+ },
67+ "nyc" : {
68+ "exclude" : [
69+ " coverage" ,
70+ " tests"
71+ ]
6672 }
6773}
You can’t perform that action at this time.
0 commit comments