Skip to content

Commit

Permalink
Merge pull request #655 from ckeditor/i/7396
Browse files Browse the repository at this point in the history
Internal: Replaced `istanbul` with `nyc`. Closes ckeditor/ckeditor5#7396.
  • Loading branch information
mlewand committed Jun 29, 2020
2 parents b1e066e + 8ba1124 commit 0d0a371
Show file tree
Hide file tree
Showing 3 changed files with 455 additions and 391 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
# Be sure to append /** to folders to have everything inside them ignored.

**/node_modules/**
.nyc_output/**
coverage/**
npm-debug.log
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"eslint": "^7.0.0",
"eslint-config-ckeditor5": "^3.0.0",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"lint-staged": "^10.2.4",
"mocha": "^7.1.2"
"mocha": "^7.1.2",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=12.0.0",
Expand All @@ -28,7 +28,7 @@
"homepage": "https://github.com/ckeditor/ckeditor5-dev#readme",
"scripts": {
"test": "mocha packages/*/tests --recursive --timeout 5000",
"coverage": "istanbul cover _mocha packages/*/tests -- --recursive --timeout 5000",
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha packages/*/tests -- --recursive --timeout 5000",
"changelog": "node ./scripts/changelog.js",
"release:bump-version": "node ./scripts/bump-versions.js",
"release:publish": "node ./scripts/publish.js",
Expand Down
Loading

0 comments on commit 0d0a371

Please sign in to comment.